hmn/src/rawdata/scss/theme.scss

12 lines
244 B
SCSS

@import 'globals';
// This defines the $vars variable. Which _variables.scss gets
// imported is determined by the include paths of the SCSS compiler.
@import 'variables';
:root {
@each $name, $val in $vars {
--#{$name}: #{$val};
}
}