1// Base settings for all themes that can optionally be 2// overridden by the super-theme 3 4// Background of the presentation 5$backgroundColor: #2b2b2b; 6 7// Primary/body text 8$mainFont: 'Lato', sans-serif; 9$mainFontSize: 40px; 10$mainColor: #eee; 11 12// Vertical spacing between blocks of text 13$blockMargin: 20px; 14 15// Headings 16$headingMargin: 0 0 $blockMargin 0; 17$headingFont: 'League Gothic', Impact, sans-serif; 18$headingColor: #eee; 19$headingLineHeight: 1.2; 20$headingLetterSpacing: normal; 21$headingTextTransform: uppercase; 22$headingTextShadow: none; 23$headingFontWeight: normal; 24$heading1TextShadow: $headingTextShadow; 25 26$heading1Size: 3.77em; 27$heading2Size: 2.11em; 28$heading3Size: 1.55em; 29$heading4Size: 1.00em; 30 31$codeFont: monospace; 32 33// Links and actions 34$linkColor: #13DAEC; 35$linkColorHover: lighten( $linkColor, 20% ); 36 37// Text selection 38$selectionBackgroundColor: #FF5E99; 39$selectionColor: #fff; 40 41// Generates the presentation background, can be overridden 42// to return a background image or gradient 43@mixin bodyBackground() { 44 background: $backgroundColor; 45} 46