Add font/_weight.scss

This commit is contained in:
0x1eef 2024-01-28 03:43:37 -03:00
parent 207ba1076b
commit 54d17a2e22
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,27 @@
.font-thin {
font-weight: 100;
}
.font-extralight {
font-weight: 200;
}
.font-light {
font-weight: 300;
}
.font-normal {
font-weight: 400;
}
.font-medium {
font-weight: 500;
}
.font-semibold {
font-weight: 600;
}
.font-bold {
font-weight: 700;
}
.font-extrabold {
font-weight: 800;
}
.font-black {
font-weight: 900;
}

View file

@ -1,4 +1,5 @@
@import "family";
@import "size";
@import "style";
@import "weight";
@import "variant_numeric";