11 lines
184 B
SCSS
11 lines
184 B
SCSS
@use "sass:color";
|
|
|
|
:root {
|
|
@each $name, $theme in getThemes() {
|
|
.theme-#{$name} {
|
|
@each $name, $color in $theme {
|
|
--theme-#{$name}: #{$color};
|
|
}
|
|
}
|
|
}
|
|
}
|