blob: 1c8d778761d9e74e9428f395e8b5c324102d990e [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
28.reveal a {
29 line-height: 1.3em;
30}
31
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020032// Change text colors against dark slide backgrounds
33@include dark-bg-text-color(#fff);
34
JJ Allaireefa6ad42016-01-30 13:12:05 -050035
36// Theme template ------------------------------
37@import "../template/theme";
38// ---------------------------------------------