_vars.css.scss 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Background color for the top bar */
  2. $topbar-bg: green;
  3. $pm_red: #D55F60;
  4. $pm_blue: #67ABDE;
  5. $pm_yellow: #F6D474;
  6. $pm_green: #84C99D;
  7. $cat_memory: $pm_red;
  8. $cat_spacial-recognition: $pm_blue;
  9. $cat_problem-solving: $pm_yellow;
  10. $cat_focus: $pm_green;
  11. /*------------------------------------*\
  12. $BASE
  13. \*------------------------------------*/
  14. /**
  15. * Base stuff
  16. */
  17. $base-font-size: 16px!default;
  18. $base-line-height: 24px!default;
  19. /**
  20. * Base font-family.
  21. */
  22. $base-font-family: sans-serif!default;
  23. /**
  24. * Default colour for objects’ borders etc.
  25. */
  26. $base-ui-color: green!default;
  27. /*------------------------------------*\
  28. $FRAMEWORK
  29. \*------------------------------------*/
  30. /**
  31. * inuit.css will work these next ones out for use within the framework.
  32. *
  33. * Assign our `$base-line-height` to a new spacing var for more transparency.
  34. */
  35. $base-spacing-unit: $base-line-height!default;
  36. $half-spacing-unit: $base-spacing-unit / 2!default;
  37. $line-height-ratio: $base-line-height / $base-font-size;