1 |
efrain |
1 |
:root {
|
|
|
2 |
// Custom variable values only support SassScript inside `#{}`.
|
|
|
3 |
@each $color, $value in $colors {
|
|
|
4 |
--#{$color}: #{$value};
|
|
|
5 |
}
|
|
|
6 |
|
|
|
7 |
@each $color, $value in $theme-colors {
|
|
|
8 |
--#{$color}: #{$value};
|
|
|
9 |
}
|
|
|
10 |
|
|
|
11 |
@each $bp, $value in $grid-breakpoints {
|
|
|
12 |
--breakpoint-#{$bp}: #{$value};
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
// Use `inspect` for lists so that quoted items keep the quotes.
|
|
|
16 |
// See https://github.com/sass/sass/issues/2383#issuecomment-336349172
|
|
|
17 |
--font-family-sans-serif: #{inspect($font-family-sans-serif)};
|
|
|
18 |
--font-family-monospace: #{inspect($font-family-monospace)};
|
|
|
19 |
}
|