settings.scss 1006 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. // 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. $heading1TextShadow: $headingTextShadow;
  20. $heading1Size: 3.77em;
  21. $heading2Size: 2.11em;
  22. $heading3Size: 1.55em;
  23. $heading4Size: 1.00em;
  24. // Links and actions
  25. $linkColor: #13DAEC;
  26. $linkColorHover: lighten( $linkColor, 20% );
  27. // Text selection
  28. $selectionBackgroundColor: #FF5E99;
  29. $selectionColor: #fff;
  30. // Generates the presentation background, can be overridden
  31. // to return a background image or gradient
  32. @mixin bodyBackground() {
  33. background: $backgroundColor;
  34. }