blob: 7c655c4f98bab9e111318ef23e419db1032d859a [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
2 * Black theme for reveal.js. This is the opposite of the 'white' 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)
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020019$backgroundColor: #191919;
JJ Allaireefa6ad42016-01-30 13:12:05 -050020
21$mainColor: #fff;
22$headingColor: #fff;
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: #42affa;
32$linkColorHover: lighten( $linkColor, 15% );
Marc Kupietz09b75752023-10-07 09:32:19 +020033$selectionBackgroundColor: rgba( $linkColor, 0.75 );
JJ Allaireefa6ad42016-01-30 13:12:05 -050034
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 light slide backgrounds
41@include light-bg-text-color(#222);
JJ Allaireefa6ad42016-01-30 13:12:05 -050042
43
44// Theme template ------------------------------
45@import "../template/theme";
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020046// ---------------------------------------------