_colors.scss 925 B

1234567891011121314151617181920212223242526272829303132
  1. // the colors map variables used throughout the project
  2. // ======================================================================
  3. // define your colors here, and feel free to use 'real' names, just
  4. // like below --> color-red: #fff; but never use those colors in your
  5. // project, only use the map + mixins, where you assing the colors in
  6. $color-grey: #616161;
  7. $color-grey-light: #f0f0f0;
  8. $color-grey-another: #9b9b9b;
  9. $color-white: rgb(255, 255, 255);
  10. $color-red: #d0021b;
  11. $color-red-soft: #ffb8c1;
  12. $color-green: #7ed321;
  13. $color-light: rgba(0, 0, 0, 0.08);
  14. $color-blue: #90cfeb;
  15. $colors: (
  16. default: $color-grey,
  17. main: $color-red,
  18. sub: $color-blue,
  19. error: $color-red,
  20. correct: $color-green,
  21. inverted: $color-white,
  22. border: $color-grey,
  23. background: $color-white,
  24. button: $color-grey-light,
  25. lightbackground: $color-grey-light,
  26. grid: $color-light,
  27. axis: $color-grey-another,
  28. soft: $color-red-soft
  29. );