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