Build the UI config file

Create the file

  1. $ touch _config.scss

Add the following code:

  1. /////// Typography configuration
  2. // *----------------------------------------
  3. $font-size: 16;
  4. $heading-1: 36;
  5. $heading-2: 32;
  6. $heading-3: 28;
  7. $heading-4: 18;
  8. $heading-5: 18;
  9. $heading-6: 18;
  10. $line: $font-size * 1.5;
  11. $small-point-size: 10;
  12. $large-point-size: 14;
  13. $primary-font-family: #{"Helvetica Neue", Arial, sans-serif};
  14. $secondary-font-family: #{"Helvetica Neue", Arial, sans-serif};
  15. $heading-font-family: #{"Helvetica Neue", Arial, sans-serif};
  16. /////// Default webfont directory
  17. // *----------------------------------------
  18. $fontDir: "fonts/";
  19. /////// Default image directory
  20. // *----------------------------------------
  21. $imgDir: "images/";
  22. /////// OOCSS generic base colors
  23. // *----------------------------------------
  24. $alpha-primary: #5a2e2e; // red
  25. $bravo-primary: #3e4147; // green
  26. $charlie-primary: #fffedf; // yellow
  27. $delta-primary: #2a2c31; // blue
  28. $echo-primary: #dfba69; // accent
  29. $alpha-gray: #333; //black
  30. /////// Color math
  31. // *----------------------------------------
  32. @import "color-scale";
  33. /////// Semantic variables
  34. // *----------------------------------------
  35. // abstract 'white' value to easily applied to semantic class objects
  36. $white: #fff;
  37. // primary header font color
  38. $primary-header-color: $alpha-gray;
  39. // default heading font weight
  40. $heading-font-weight: normal;
  41. // primary font color for the app
  42. $primary-text: $alpha-gray;
  43. // default `href` link color
  44. $href-color: $delta-color;
  45. // default shadow colors
  46. $shadow-color: fade-out($alpha-color, 0.5);
  47. // default border color
  48. $border-color: $alpha-color;
  49. /////// HTML 5 feature colors
  50. // *----------------------------------------
  51. // used with the `ins` tag
  52. // http://www.w3schools.com/tags/tag_ins.asp
  53. $ins-color: $charlie-color;
  54. // used with the `mark` tag
  55. // http://www.w3schools.com/html5/tag-mark.asp
  56. $mark-color: $charlie-color;
  57. // webkit tap highlight color
  58. $webkit-tap-hightlight: $delta-color;
  59. // overrides the default content selection color in the browser
  60. $selection-color: $charlie-color;
  61. $selection-text-color: $primary-text;
  62. //////// Default animation properties
  63. // *----------------------------------------
  64. $trans: .333s ease;

Add to the application.scss file

  1. /////// App Config - this is where most of your magic will happen
  2. // *----------------------------------------
  3. @import "config";