blob: babec4d1cae19c54655e525bb4f2431266798463 [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
2 * A simple theme for reveal.js presentations, similar
3 * to the default theme. The accent color is brown.
4 *
5 * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
6 */
7
8
9// Default mixins and settings -----------------
10@import "../template/mixins";
11@import "../template/settings";
12// ---------------------------------------------
13
14
15
16// Override theme settings (see ../template/settings.scss)
17$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
18$mainColor: #000;
19$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
20$headingColor: #383D3D;
21$headingTextShadow: none;
22$headingTextTransform: none;
23$backgroundColor: #F0F1EB;
24$linkColor: #51483D;
25$linkColorHover: lighten( $linkColor, 20% );
26$selectionBackgroundColor: #26351C;
27
Marc Kupietz9c036a42024-05-14 13:17:25 +020028$overlayElementBgColor: 0, 0, 0;
29$overlayElementFgColor: 240, 240, 240;
30
JJ Allaireefa6ad42016-01-30 13:12:05 -050031.reveal a {
32 line-height: 1.3em;
33}
34
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020035// Change text colors against dark slide backgrounds
36@include dark-bg-text-color(#fff);
37
JJ Allaireefa6ad42016-01-30 13:12:05 -050038
39// Theme template ------------------------------
40@import "../template/theme";
41// ---------------------------------------------