blob: d4be6536cd440134386095bc557bc9238e82ede6 [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
2 * White theme for reveal.js. This is the opposite of the 'black' theme.
3 *
Bruce's Thinkpad3c3d67d2016-07-14 01:43:48 +08004 * By Hakim El Hattab, http://hakim.se
JJ Allaireefa6ad42016-01-30 13:12:05 -05005 */
6
7
8// Default mixins and settings -----------------
Marc Kupietzcf6e9982026-08-15 15:37:40 +02009@use "sass:color";
JJ Allaireefa6ad42016-01-30 13:12:05 -050010@import "../template/mixins";
11@import "../template/settings";
12// ---------------------------------------------
13
14
15// Include theme-specific fonts
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020016@import url(./fonts/source-sans-pro/source-sans-pro.css);
JJ Allaireefa6ad42016-01-30 13:12:05 -050017
18
19// Override theme settings (see ../template/settings.scss)
20$backgroundColor: #fff;
21
22$mainColor: #222;
23$headingColor: #222;
24
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020025$mainFontSize: 42px;
JJ Allaireefa6ad42016-01-30 13:12:05 -050026$mainFont: 'Source Sans Pro', Helvetica, sans-serif;
27$headingFont: 'Source Sans Pro', Helvetica, sans-serif;
28$headingTextShadow: none;
29$headingLetterSpacing: normal;
30$headingTextTransform: uppercase;
31$headingFontWeight: 600;
32$linkColor: #2a76dd;
Marc Kupietzcf6e9982026-08-15 15:37:40 +020033$linkColorHover: color.scale( $linkColor, $lightness: 15% );
34$selectionBackgroundColor: color.scale( $linkColor, $lightness: 25% );
JJ Allaireefa6ad42016-01-30 13:12:05 -050035
36$heading1Size: 2.5em;
37$heading2Size: 1.6em;
38$heading3Size: 1.3em;
39$heading4Size: 1.0em;
40
Marc Kupietz9c036a42024-05-14 13:17:25 +020041$overlayElementBgColor: 0, 0, 0;
42$overlayElementFgColor: 240, 240, 240;
43
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020044// Change text colors against dark slide backgrounds
45@include dark-bg-text-color(#fff);
JJ Allaireefa6ad42016-01-30 13:12:05 -050046
47
48// Theme template ------------------------------
49@import "../template/theme";
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020050// ---------------------------------------------