Background and color utility classes & map

This commit is contained in:
2025-12-22 12:01:47 +01:00
parent bae76ed030
commit 99d878a331
2 changed files with 41 additions and 20 deletions

View File

@ -0,0 +1,12 @@
// Color utility classes
@each $name, $color in $theme-colors {
.bg-#{$name} {
background-color: $color;
}
}
@each $name, $color in $theme-colors {
.color-#{$name} {
color: $color;
}
}