You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 1234567891011121314 |
- .dark-mode {
- :root {
- // Custom variable values only support SassScript inside `#{}`.
- @each $color, $value in $colors-alt {
- --#{$color}: #{$value};
- }
-
- @each $color, $value in $theme-colors-alt {
- --#{$color}: #{$value};
- }
- }
- }
-
- //
|