mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-09-02 11:42:39 +00:00
12 lines
297 B
SCSS
12 lines
297 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%)};
|
|
}
|
|
}
|