18 lines
319 B
SCSS
18 lines
319 B
SCSS
|
@each $variant, $range in $color-ranges {
|
||
|
@each $suffix, $color in $range {
|
||
|
#{'.bg-#{$variant}-#{$suffix}'} {
|
||
|
background-color: $color;
|
||
|
}
|
||
|
|
||
|
#{'.text-#{$variant}-#{$suffix}'} {
|
||
|
color: $color;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@each $index, $size in $type-scale {
|
||
|
#{'.text-#{$index}'} {
|
||
|
font-size: $size;
|
||
|
}
|
||
|
}
|