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