blob: 3d54ac82478ea04f9958fb702b845933599f5451 [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
Marc Kupietz9c036a42024-05-14 13:17:25 +020041// Colors used for UI elements that are overlaid on top of
42// the presentation
43$overlayElementBgColor: 240, 240, 240;
44$overlayElementFgColor: 0, 0, 0;
45
JJ Allaireefa6ad42016-01-30 13:12:05 -050046// Generates the presentation background, can be overridden
47// to return a background image or gradient
48@mixin bodyBackground() {
49 background: $backgroundColor;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020050}