blob: ffaac235c9717a37a0d2452cb261262e1709f3b9 [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001// 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: 36px;
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// Links and actions
32$linkColor: #13DAEC;
33$linkColorHover: lighten( $linkColor, 20% );
34
35// Text selection
36$selectionBackgroundColor: #FF5E99;
37$selectionColor: #fff;
38
39// Generates the presentation background, can be overridden
40// to return a background image or gradient
41@mixin bodyBackground() {
42 background: $backgroundColor;
43}