TimberTrust/business_information/static/assets/scss/utilities/_root.scss

33 lines
764 B
SCSS

@use "colors" as *;
@use "typography" as *;
:root {
// @Font-Family Declaration
@each $ff, $shades in $font-family {
@each $shade, $value in $shades {
--lt-#{$ff}-#{$shade}: #{$value};
}
}
// @Font-weight Declaration
@each $fw, $shades in $font-scale {
@each $shade, $value in $shades {
--lt-#{$fw}-#{$shade}: #{$value};
}
}
// @Font-Size Declaration
@each $fs, $shades in $font-size {
@each $shade, $value in $shades {
--lt-#{$fs}-#{$shade}: #{$value}px;
}
}
// @Color Declaration
@each $color, $shades in $colors {
@each $shade, $value in $shades {
--lt-color-#{$color}-#{$shade}: #{$value};
}
}
}