20 lines
515 B
Plaintext
20 lines
515 B
Plaintext
// Do not forget to update getting-started/theming.md!
|
|
:root {
|
|
each(@colors, #(@value, @color) {
|
|
--@{color}: @value;
|
|
});
|
|
|
|
each(@theme-colors, #(@value, @color) {
|
|
--@{color}: @value;
|
|
});
|
|
|
|
each(@grid-breakpoints, #(@value, @bp) {
|
|
--breakpoint-@{bp}: @value;
|
|
});
|
|
|
|
// Use `inspect` for lists so that quoted items keep the quotes.
|
|
// See https://github.com/sass/sass/issues/2383#issuecomment-336349172
|
|
--font-family-sans-serif: @font-family-sans-serif;
|
|
--font-family-monospace: @font-family-monospace;
|
|
}
|