_root.less 515 B

12345678910111213141516171819
  1. // Do not forget to update getting-started/theming.md!
  2. :root {
  3. each(@colors, #(@value, @color) {
  4. --@{color}: @value;
  5. });
  6. each(@theme-colors, #(@value, @color) {
  7. --@{color}: @value;
  8. });
  9. each(@grid-breakpoints, #(@value, @bp) {
  10. --breakpoint-@{bp}: @value;
  11. });
  12. // Use `inspect` for lists so that quoted items keep the quotes.
  13. // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
  14. --font-family-sans-serif: @font-family-sans-serif;
  15. --font-family-monospace: @font-family-monospace;
  16. }