blob: 443d30a509b1b6d967c099a526af5ee01f13559b [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 -----------------
9@import "../template/mixins";
10@import "../template/settings";
11// ---------------------------------------------
12
13
14// Include theme-specific fonts
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020015@import url(./fonts/source-sans-pro/source-sans-pro.css);
JJ Allaireefa6ad42016-01-30 13:12:05 -050016
17
18// Override theme settings (see ../template/settings.scss)
19$backgroundColor: #fff;
20
21$mainColor: #222;
22$headingColor: #222;
23
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020024$mainFontSize: 42px;
JJ Allaireefa6ad42016-01-30 13:12:05 -050025$mainFont: 'Source Sans Pro', Helvetica, sans-serif;
26$headingFont: 'Source Sans Pro', Helvetica, sans-serif;
27$headingTextShadow: none;
28$headingLetterSpacing: normal;
29$headingTextTransform: uppercase;
30$headingFontWeight: 600;
31$linkColor: #2a76dd;
32$linkColorHover: lighten( $linkColor, 15% );
33$selectionBackgroundColor: lighten( $linkColor, 25% );
34
35$heading1Size: 2.5em;
36$heading2Size: 1.6em;
37$heading3Size: 1.3em;
38$heading4Size: 1.0em;
39
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020040// Change text colors against dark slide backgrounds
41@include dark-bg-text-color(#fff);
JJ Allaireefa6ad42016-01-30 13:12:05 -050042
43
44// Theme template ------------------------------
45@import "../template/theme";
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020046// ---------------------------------------------