settings.scss 866 B

12345678910111213141516171819202122232425262728293031323334
  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: 36px;
  8. $mainColor: #eee;
  9. // Headings
  10. $headingMargin: 0 0 20px 0;
  11. $headingFont: 'League Gothic', Impact, sans-serif;
  12. $headingColor: #eee;
  13. $headingLineHeight: 0.9em;
  14. $headingLetterSpacing: 0.02em;
  15. $headingTextTransform: uppercase;
  16. $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);
  17. $heading1TextShadow: $headingTextShadow;
  18. // Links and actions
  19. $linkColor: #13DAEC;
  20. $linkColorHover: lighten( $linkColor, 20% );
  21. // Text selection
  22. $selectionBackgroundColor: #FF5E99;
  23. $selectionColor: #fff;
  24. // Generates the presentation background, can be overridden
  25. // to return a background image or gradient
  26. @mixin bodyBackground() {
  27. background: $backgroundColor;
  28. }