Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
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.

31 lines
659 B

4 years ago
  1. /**
  2. *
  3. *
  4. */
  5. $crispy__font-family: 'IBM Plex Mono';
  6. /**
  7. * colors
  8. *
  9. */
  10. $crispy__color-primary: #4ecdc4;
  11. $crispy__color-danger: #ff6b6b;
  12. $crispy__color-warning: #ffe66d;
  13. $crispy__color-success: #44cf6c;
  14. //$crispy__color-grey-light:
  15. //$crispy__color-grey:
  16. //$crispy__color-grey-dark:
  17. $crispy__color-white: #f7fff7;
  18. $crispy__color-background: #292f36;
  19. $crispy__color-text: $crispy__color-white;
  20. // colors as map
  21. $crispy__colors: (
  22. 'primary' : $crispy__color-primary,
  23. 'success' : $crispy__color-success,
  24. 'warning' : $crispy__color-warning,
  25. 'danger' : $crispy__color-danger,
  26. 'white' : $crispy__color-white
  27. ) !default;