blob: 9e1a2cafbe1b3e65f6870b9fd40aefa6b7b6f371 [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
Marc Kupietz09b75752023-10-07 09:32:19 +02002 * Black 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 black.(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)
Marc Kupietz09b75752023-10-07 09:32:19 +020022$backgroundColor: #000000;
JJ Allaireefa6ad42016-01-30 13:12:05 -050023
24$mainColor: #fff;
25$headingColor: #fff;
26
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: #42affa;
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 light slide backgrounds
Marc Kupietz09b75752023-10-07 09:32:19 +020044@include light-bg-text-color(#000);
JJ Allaireefa6ad42016-01-30 13:12:05 -050045
46
47// Theme template ------------------------------
48@import "../template/theme";
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020049// ---------------------------------------------