mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
12 lines
295 B
SCSS
12 lines
295 B
SCSS
:root {
|
|
// Note: Custom variable values only support SassScript inside `#{}`.
|
|
|
|
// Theme colors varibles
|
|
@each $color, $value in $theme-colors {
|
|
--#{$prefix}#{$color}: #{$value};
|
|
}
|
|
@each $color, $value in $theme-colors {
|
|
--#{$prefix}#{$color}-dark: #{darken($value, 5%)};
|
|
}
|
|
}
|