settings.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Base settings for all themes that can optionally be
  2. // overridden by the super-theme
  3. // Background of the presentation
  4. $backgroundColor: #2b2b2b;
  5. // Primary/body text
  6. $mainFont: 'Lato', sans-serif;
  7. $mainFontSize: 40px;
  8. $mainColor: #eee;
  9. // Vertical spacing between blocks of text
  10. $blockMargin: 20px;
  11. // Headings
  12. $headingMargin: 0 0 $blockMargin 0;
  13. $headingFont: 'League Gothic', Impact, sans-serif;
  14. $headingColor: #eee;
  15. $headingLineHeight: 1.2;
  16. $headingLetterSpacing: normal;
  17. $headingTextTransform: uppercase;
  18. $headingTextShadow: none;
  19. $headingFontWeight: normal;
  20. $heading1TextShadow: $headingTextShadow;
  21. $heading1Size: 3.77em;
  22. $heading2Size: 2.11em;
  23. $heading3Size: 1.55em;
  24. $heading4Size: 1.00em;
  25. // Links and actions
  26. $linkColor: #13DAEC;
  27. $linkColorHover: lighten( $linkColor, 20% );
  28. // Text selection
  29. $selectionBackgroundColor: #FF5E99;
  30. $selectionColor: #fff;
  31. // Generates the presentation background, can be overridden
  32. // to return a background image or gradient
  33. @mixin bodyBackground() {
  34. background: $backgroundColor;
  35. }