/stylus/skins.styl

https://github.com/ajanthanm/colors · Stylus · 115 lines · 85 code · 11 blank · 19 comment · 0 complexity · d94998605780b053888b0945a81d0ff5 MD5 · raw file

  1. /* ==========================================================================
  2. SKINS
  3. - Backgrounds
  4. - Colors
  5. - Border colors
  6. - SVG fills
  7. - SVG strokes
  8. ========================================================================== */
  9. /* Backgrounds */
  10. .bg-navy { background-color: navy; }
  11. .bg-blue { background-color: blue; }
  12. .bg-aqua { background-color: aqua; }
  13. .bg-teal { background-color: teal; }
  14. .bg-olive { background-color: olive; }
  15. .bg-green { background-color: green; }
  16. .bg-lime { background-color: lime; }
  17. .bg-yellow { background-color: yellow; }
  18. .bg-orange { background-color: orange; }
  19. .bg-red { background-color: red; }
  20. .bg-fuchsia { background-color: fuchsia; }
  21. .bg-purple { background-color: purple; }
  22. .bg-maroon { background-color: maroon; }
  23. .bg-white { background-color: white; }
  24. .bg-gray { background-color: gray; }
  25. .bg-silver { background-color: silver; }
  26. .bg-black { background-color: black; }
  27. /* Colors */
  28. .navy { color: navy; }
  29. .blue { color: blue; }
  30. .aqua { color: aqua; }
  31. .teal { color: teal; }
  32. .olive { color: olive; }
  33. .green { color: green; }
  34. .lime { color: lime; }
  35. .yellow { color: yellow; }
  36. .orange { color: orange; }
  37. .red { color: red; }
  38. .fuchsia { color: fuchsia; }
  39. .purple { color: purple; }
  40. .maroon { color: maroon; }
  41. .white { color: white; }
  42. .silver { color: silver; }
  43. .gray { color: gray; }
  44. .black { color: black; }
  45. /* Border colors
  46. Use with another border utility that sets border-width and style
  47. i.e .border { border-width: 1px; border-style: solid; }
  48. */
  49. .border--navy { border-color: navy; }
  50. .border--blue { border-color: blue; }
  51. .border--aqua { border-color: aqua; }
  52. .border--teal { border-color: teal; }
  53. .border--olive { border-color: olive; }
  54. .border--green { border-color: green; }
  55. .border--lime { border-color: lime; }
  56. .border--yellow { border-color: yellow; }
  57. .border--orange { border-color: orange; }
  58. .border--red { border-color: red; }
  59. .border--fuchsia { border-color: fuchsia; }
  60. .border--purple { border-color: purple; }
  61. .border--maroon { border-color: maroon; }
  62. .border--white { border-color: white; }
  63. .border--gray { border-color: gray; }
  64. .border--silver { border-color: silver; }
  65. .border--black { border-color: black; }
  66. /* Fills for SVG */
  67. .fill-navy { fill: navy; }
  68. .fill-blue { fill: blue; }
  69. .fill-aqua { fill: aqua; }
  70. .fill-teal { fill: teal; }
  71. .fill-olive { fill: olive; }
  72. .fill-green { fill: green; }
  73. .fill-lime { fill: lime; }
  74. .fill-yellow { fill: yellow; }
  75. .fill-orange { fill: orange; }
  76. .fill-red { fill: red; }
  77. .fill-fuchsia { fill: fuchsia; }
  78. .fill-purple { fill: purple; }
  79. .fill-maroon { fill: maroon; }
  80. .fill-white { fill: white; }
  81. .fill-gray { fill: gray; }
  82. .fill-silver { fill: silver; }
  83. .fill-black { fill: black; }
  84. /* Strokes for SVG */
  85. .strokes-navy { stroke: navy; }
  86. .strokes-blue { stroke: blue; }
  87. .strokes-aqua { stroke: aqua; }
  88. .strokes-teal { stroke: teal; }
  89. .strokes-olive { stroke: olive; }
  90. .strokes-green { stroke: green; }
  91. .strokes-lime { stroke: lime; }
  92. .strokes-yellow { stroke: yellow; }
  93. .strokes-orange { stroke: orange; }
  94. .strokes-red { stroke: red; }
  95. .strokes-fuchsia { stroke: fuchsia; }
  96. .strokes-purple { stroke: purple; }
  97. .strokes-maroon { stroke: maroon; }
  98. .strokes-white { stroke: white; }
  99. .strokes-gray { stroke: gray; }
  100. .strokes-silver { stroke: silver; }
  101. .strokes-black { stroke: black; }