blob: 51a21af26158575b7a7b22214acfa8393bae2aab [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 darkblue.
4 *
5 * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
6 * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7 */
8
9
10// Default mixins and settings -----------------
11@import "../template/mixins";
12@import "../template/settings";
13// ---------------------------------------------
14
15
16
17// Include theme-specific fonts
18@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
19@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
20
21
22// Override theme settings (see ../template/settings.scss)
23$mainFont: 'Lato', sans-serif;
24$mainColor: #000;
25$headingFont: 'News Cycle', Impact, sans-serif;
26$headingColor: #000;
27$headingTextShadow: none;
28$headingTextTransform: none;
29$backgroundColor: #fff;
30$linkColor: #00008B;
31$linkColorHover: lighten( $linkColor, 20% );
32$selectionBackgroundColor: rgba(0, 0, 0, 0.99);
33
Marc Kupietz9c036a42024-05-14 13:17:25 +020034$overlayElementBgColor: 0, 0, 0;
35$overlayElementFgColor: 240, 240, 240;
36
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020037// Change text colors against dark slide backgrounds
38@include dark-bg-text-color(#fff);
JJ Allaireefa6ad42016-01-30 13:12:05 -050039
40
41// Theme template ------------------------------
42@import "../template/theme";
43// ---------------------------------------------