tagblog-root-var-css.mustache 771 B

123456789101112131415161718192021222324252627
  1. {{!
  2. Note the transition from uppercase hex (what the base16 builder wants)
  3. to lowercase var names (more in tune with CSS)
  4. }}
  5. /* Base16 {{scheme-name}}
  6. * Scheme author: {{scheme-author}}
  7. * For the TagBlog PicoCMS theme
  8. * {framagit,notabug}.org/ohnonot/tagblog
  9. */
  10. :root {
  11. --base00: #{{base00-hex}};
  12. --base01: #{{base01-hex}};
  13. --base02: #{{base02-hex}};
  14. --base03: #{{base03-hex}};
  15. --base04: #{{base04-hex}};
  16. --base05: #{{base05-hex}};
  17. --base06: #{{base06-hex}};
  18. --base07: #{{base07-hex}};
  19. --base08: #{{base08-hex}};
  20. --base09: #{{base09-hex}};
  21. --base0a: #{{base0A-hex}};
  22. --base0b: #{{base0B-hex}};
  23. --base0c: #{{base0C-hex}};
  24. --base0d: #{{base0D-hex}};
  25. --base0e: #{{base0E-hex}};
  26. --base0f: #{{base0F-hex}};
  27. }