settings.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. // Generates the presentation background, can be overridden
  33. // to return a background image or gradient
  34. @mixin bodyBackground() {
  35. background: $backgroundColor;
  36. }