quasar.variables.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. "btn-badge": #554EF4,
  47. );
  48. @each $name, $color in $colors {
  49. .text-#{$name} {
  50. color: $color !important;
  51. }
  52. .bg-#{$name} {
  53. background: $color !important;
  54. }
  55. }