quasar.variables.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. $primary: #003e29;
  2. $secondary: #ff8340;
  3. $terciary: #ace4e4;
  4. $accent: #e91e63;
  5. $positive: #2e7d32;
  6. $negative: #d32f2f;
  7. $info: #0288d1;
  8. $warning: #ed6c02;
  9. $colors: (
  10. "primary": #003e29,
  11. "primary-2": #406e5f,
  12. "primary-3": #809f94,
  13. "primary-4": #c0cfca,
  14. "secondary": #ff8340,
  15. "secondary-2": #ffa270,
  16. "secondary-3": #ffc1a0,
  17. "secondary-4": #ffe0d0,
  18. "terciary": #ace4e4,
  19. "terciary-2": #c1ebeb,
  20. "terciary-3": #d6f2f2,
  21. "terciary-4": #eaf8f8,
  22. "background": #ececf0,
  23. "background-2": #f1f1f4,
  24. "background-3": #f6f6f8,
  25. "background-4": #fafafb,
  26. "suface": #ffffff,
  27. "stroke": #c9c9c9,
  28. "stroke-2": #d7d7d7,
  29. "stroke-3": #e4e4e4,
  30. "stroke-4": #f2f2f2,
  31. "alert": #e6cc00,
  32. "alert-2": #edd940,
  33. "alert-3": #f3e580,
  34. "alert-4": #f9f2c0,
  35. "approved": #00e339,
  36. "approved-2": #40ea6b,
  37. "approved-3": #80f19c,
  38. "approved-4": #c0f8ce,
  39. "declined": #ff383c,
  40. "declined-2": #ff6a6d,
  41. "declined-3": #ff9c9e,
  42. "declined-4": #ffcecf,
  43. "warning": #BF6A02,
  44. "accent-1": #E38B37,
  45. "foreground": #505050,
  46. );
  47. @each $name, $color in $colors {
  48. .text-#{$name} {
  49. color: $color !important;
  50. }
  51. .bg-#{$name} {
  52. background: $color !important;
  53. }
  54. }