| 12345678910111213141516171819 |
- // 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;
- }
|