blob: 2a23ba457a49d77493a4e5d0a45b7afc68bd00b8 [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
Marc Kupietz09b75752023-10-07 09:32:19 +02002 * White compact & high contrast reveal.js theme, with headers not in capitals.
JJ Allaireefa6ad42016-01-30 13:12:05 -05003 *
Marc Kupietz09b75752023-10-07 09:32:19 +02004 * By Peter Kehl. Based on white.(s)css by Hakim El Hattab, http://hakim.se
5 *
6 * - Keep the source similar to black.css - for easy comparison.
7 * - $mainFontSize controls code blocks, too (although under some ratio).
JJ Allaireefa6ad42016-01-30 13:12:05 -05008 */
9
10
11// Default mixins and settings -----------------
12@import "../template/mixins";
13@import "../template/settings";
14// ---------------------------------------------
15
16
17// Include theme-specific fonts
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020018@import url(./fonts/source-sans-pro/source-sans-pro.css);
JJ Allaireefa6ad42016-01-30 13:12:05 -050019
20
21// Override theme settings (see ../template/settings.scss)
22$backgroundColor: #fff;
23
Marc Kupietz09b75752023-10-07 09:32:19 +020024$mainColor: #000;
25$headingColor: #000;
JJ Allaireefa6ad42016-01-30 13:12:05 -050026
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020027$mainFontSize: 42px;
JJ Allaireefa6ad42016-01-30 13:12:05 -050028$mainFont: 'Source Sans Pro', Helvetica, sans-serif;
29$headingFont: 'Source Sans Pro', Helvetica, sans-serif;
30$headingTextShadow: none;
31$headingLetterSpacing: normal;
32$headingTextTransform: uppercase;
33$headingFontWeight: 600;
34$linkColor: #2a76dd;
35$linkColorHover: lighten( $linkColor, 15% );
36$selectionBackgroundColor: lighten( $linkColor, 25% );
37
38$heading1Size: 2.5em;
39$heading2Size: 1.6em;
40$heading3Size: 1.3em;
41$heading4Size: 1.0em;
42
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020043// Change text colors against dark slide backgrounds
44@include dark-bg-text-color(#fff);
JJ Allaireefa6ad42016-01-30 13:12:05 -050045
46
47// Theme template ------------------------------
48@import "../template/theme";
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020049// ---------------------------------------------