braindrops.nicwands.com/shared/styles/_themes.scss
2026-07-17 11:24:36 -04:00

11 lines
184 B
SCSS

@use "sass:color";
:root {
@each $name, $theme in getThemes() {
.theme-#{$name} {
@each $name, $color in $theme {
--theme-#{$name}: #{$color};
}
}
}
}