blob: bba4feb3b2a36af98b08b54c5cc3ff9746dc8620 [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 -----------------
Marc Kupietzcf6e9982026-08-15 15:37:40 +020010@use "sass:color";
JJ Allaireefa6ad42016-01-30 13:12:05 -050011@import "../template/mixins";
12@import "../template/settings";
13// ---------------------------------------------
14
15
16
17// Override theme settings (see ../template/settings.scss)
18$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
19$mainColor: #000;
20$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
21$headingColor: #383D3D;
22$headingTextShadow: none;
23$headingTextTransform: none;
24$backgroundColor: #F0F1EB;
25$linkColor: #51483D;
Marc Kupietzcf6e9982026-08-15 15:37:40 +020026$linkColorHover: color.scale( $linkColor, $lightness: 20% );
JJ Allaireefa6ad42016-01-30 13:12:05 -050027$selectionBackgroundColor: #26351C;
28
Marc Kupietz9c036a42024-05-14 13:17:25 +020029$overlayElementBgColor: 0, 0, 0;
30$overlayElementFgColor: 240, 240, 240;
31
JJ Allaireefa6ad42016-01-30 13:12:05 -050032.reveal a {
33 line-height: 1.3em;
34}
35
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020036// Change text colors against dark slide backgrounds
37@include dark-bg-text-color(#fff);
38
JJ Allaireefa6ad42016-01-30 13:12:05 -050039
40// Theme template ------------------------------
41@import "../template/theme";
42// ---------------------------------------------