mixins.styl 524 B

12345678910111213141516171819202122232425262728293031
  1. // * mixins.styl
  2. // Mixins for use in all sheets
  3. i = !important
  4. a(c = color-a)
  5. if c is "visited"
  6. c = color-a-visited
  7. color c i
  8. background-color(c = color-background)
  9. if c is "highlight"
  10. c = color-background-highlight
  11. if c is "highlight-extra"
  12. c = color-background-highlight-extra
  13. background-color c i
  14. bold()
  15. font-weight bold i
  16. border-color(args...)
  17. if args
  18. c = args
  19. else
  20. c = color-border
  21. border-color c i
  22. color(c = color-text)
  23. color c i