blob: 5a917f862a25c356022a70c344c150bc7292b57d [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;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02009$mainFontSize: 40px;
JJ Allaireefa6ad42016-01-30 13:12:05 -050010$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
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020031$codeFont: monospace;
32
JJ Allaireefa6ad42016-01-30 13:12:05 -050033// 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;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020045}