blob: 124a755e2cb5f5492850814d91e9e93c082d4e73 [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 -----------------
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)
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020020$backgroundColor: #191919;
JJ Allaireefa6ad42016-01-30 13:12:05 -050021
22$mainColor: #fff;
23$headingColor: #fff;
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: #42affa;
Marc Kupietzcf6e9982026-08-15 15:37:40 +020033$linkColorHover: color.scale( $linkColor, $lightness: 15% );
Marc Kupietz09b75752023-10-07 09:32:19 +020034$selectionBackgroundColor: rgba( $linkColor, 0.75 );
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
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020041// Change text colors against light slide backgrounds
42@include light-bg-text-color(#222);
JJ Allaireefa6ad42016-01-30 13:12:05 -050043
44
45// Theme template ------------------------------
46@import "../template/theme";
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020047// ---------------------------------------------