initial commit

This commit is contained in:
unknown
2021-07-28 18:45:52 +05:30
commit 026f835a87
176 changed files with 10613 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
@mixin font($type, $weight) {
font-size: var(--fs-#{$type});
font-weight: $weight;
letter-spacing: var(--ls-#{$type});
line-height: var(--lh-#{$type});
}
%text {
margin: 0;
padding: 0;
color: var(--tc-surface-high);
}
.text-h1 {
@extend %text;
@include font(h1, 500);
}
.text-h2 {
@extend %text;
@include font(h2, 500);
}
.text-s1 {
@extend %text;
@include font(s1, 400);
}
.text-b1 {
@extend %text;
@include font(b1, 400);
color: var(--tc-surface-normal);
}
.text-b2 {
@extend %text;
@include font(b2, 400);
color: var(--tc-surface-normal);
}
.text-b3 {
@extend %text;
@include font(b3, 400);
color: var(--tc-surface-low);
}