settings.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. $codeFont: monospace;
  26. // Links and actions
  27. $linkColor: #13DAEC;
  28. $linkColorHover: lighten( $linkColor, 20% );
  29. // Text selection
  30. $selectionBackgroundColor: #FF5E99;
  31. $selectionColor: #fff;
  32. // Colors used for UI elements that are overlaid on top of
  33. // the presentation
  34. $overlayElementBgColor: 240, 240, 240;
  35. $overlayElementFgColor: 0, 0, 0;
  36. // Generates the presentation background, can be overridden
  37. // to return a background image or gradient
  38. @mixin bodyBackground() {
  39. background: $backgroundColor;
  40. }