settings.scss 860 B

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