You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

240 lines
3.4 KiB

  1. //
  2. // Utility classes for colors
  3. //
  4. // Text colors
  5. .text-grey-dk-000 {
  6. color: $grey-dk-000 !important;
  7. }
  8. .text-grey-dk-100 {
  9. color: $grey-dk-100 !important;
  10. }
  11. .text-grey-dk-200 {
  12. color: $grey-dk-200 !important;
  13. }
  14. .text-grey-dk-250 {
  15. color: $grey-dk-250 !important;
  16. }
  17. .text-grey-dk-300 {
  18. color: $grey-dk-300 !important;
  19. }
  20. .text-grey-lt-000 {
  21. color: $grey-lt-000 !important;
  22. }
  23. .text-grey-lt-100 {
  24. color: $grey-lt-100 !important;
  25. }
  26. .text-grey-lt-200 {
  27. color: $grey-lt-200 !important;
  28. }
  29. .text-grey-lt-300 {
  30. color: $grey-lt-300 !important;
  31. }
  32. .text-blue-000 {
  33. color: $blue-000 !important;
  34. }
  35. .text-blue-100 {
  36. color: $blue-100 !important;
  37. }
  38. .text-blue-200 {
  39. color: $blue-200 !important;
  40. }
  41. .text-blue-300 {
  42. color: $blue-300 !important;
  43. }
  44. .text-green-000 {
  45. color: $green-000 !important;
  46. }
  47. .text-green-100 {
  48. color: $green-100 !important;
  49. }
  50. .text-green-200 {
  51. color: $green-200 !important;
  52. }
  53. .text-green-300 {
  54. color: $green-300 !important;
  55. }
  56. .text-purple-000 {
  57. color: $purple-000 !important;
  58. }
  59. .text-purple-100 {
  60. color: $purple-100 !important;
  61. }
  62. .text-purple-200 {
  63. color: $purple-200 !important;
  64. }
  65. .text-purple-300 {
  66. color: $purple-300 !important;
  67. }
  68. .text-yellow-000 {
  69. color: $yellow-000 !important;
  70. }
  71. .text-yellow-100 {
  72. color: $yellow-100 !important;
  73. }
  74. .text-yellow-200 {
  75. color: $yellow-200 !important;
  76. }
  77. .text-yellow-300 {
  78. color: $yellow-300 !important;
  79. }
  80. .text-red-000 {
  81. color: $red-000 !important;
  82. }
  83. .text-red-100 {
  84. color: $red-100 !important;
  85. }
  86. .text-red-200 {
  87. color: $red-200 !important;
  88. }
  89. .text-red-300 {
  90. color: $red-300 !important;
  91. }
  92. // Background colors
  93. .bg-grey-dk-000 {
  94. background-color: $grey-dk-000 !important;
  95. }
  96. .bg-grey-dk-100 {
  97. background-color: $grey-dk-100 !important;
  98. }
  99. .bg-grey-dk-200 {
  100. background-color: $grey-dk-200 !important;
  101. }
  102. .bg-grey-dk-250 {
  103. background-color: $grey-dk-250 !important;
  104. }
  105. .bg-grey-dk-300 {
  106. background-color: $grey-dk-300 !important;
  107. }
  108. .bg-grey-lt-000 {
  109. background-color: $grey-lt-000 !important;
  110. }
  111. .bg-grey-lt-100 {
  112. background-color: $grey-lt-100 !important;
  113. }
  114. .bg-grey-lt-200 {
  115. background-color: $grey-lt-200 !important;
  116. }
  117. .bg-grey-lt-300 {
  118. background-color: $grey-lt-300 !important;
  119. }
  120. .bg-blue-000 {
  121. background-color: $blue-000 !important;
  122. }
  123. .bg-blue-100 {
  124. background-color: $blue-100 !important;
  125. }
  126. .bg-blue-200 {
  127. background-color: $blue-200 !important;
  128. }
  129. .bg-blue-300 {
  130. background-color: $blue-300 !important;
  131. }
  132. .bg-green-000 {
  133. background-color: $green-000 !important;
  134. }
  135. .bg-green-100 {
  136. background-color: $green-100 !important;
  137. }
  138. .bg-green-200 {
  139. background-color: $green-200 !important;
  140. }
  141. .bg-green-300 {
  142. background-color: $green-300 !important;
  143. }
  144. .bg-purple-000 {
  145. background-color: $purple-000 !important;
  146. }
  147. .bg-purple-100 {
  148. background-color: $purple-100 !important;
  149. }
  150. .bg-purple-200 {
  151. background-color: $purple-200 !important;
  152. }
  153. .bg-purple-300 {
  154. background-color: $purple-300 !important;
  155. }
  156. .bg-yellow-000 {
  157. background-color: $yellow-000 !important;
  158. }
  159. .bg-yellow-100 {
  160. background-color: $yellow-100 !important;
  161. }
  162. .bg-yellow-200 {
  163. background-color: $yellow-200 !important;
  164. }
  165. .bg-yellow-300 {
  166. background-color: $yellow-300 !important;
  167. }
  168. .bg-red-000 {
  169. background-color: $red-000 !important;
  170. }
  171. .bg-red-100 {
  172. background-color: $red-100 !important;
  173. }
  174. .bg-red-200 {
  175. background-color: $red-200 !important;
  176. }
  177. .bg-red-300 {
  178. background-color: $red-300 !important;
  179. }