blob: 98a206288f50cda62a4b7c3011d3c1e428b8495d [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
2 * Black theme for reveal.js.
3 *
4 * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 */
6
7
8// Default mixins and settings -----------------
9@import "../template/mixins";
10@import "../template/settings";
11// ---------------------------------------------
12
13
14// Include theme-specific fonts
15@import url(https://fonts.googleapis.com/css?family=Montserrat:700);
16@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
17
18
19// Override theme settings (see ../template/settings.scss)
20$backgroundColor: #111;
21
22$mainFont: 'Open Sans', sans-serif;
23$linkColor: #e7ad52;
24$linkColorHover: lighten( $linkColor, 20% );
25$headingFont: 'Montserrat', Impact, sans-serif;
26$headingTextShadow: none;
27$headingLetterSpacing: -0.03em;
28$headingTextTransform: none;
29$selectionBackgroundColor: #e7ad52;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020030
31// Change text colors against light slide backgrounds
32@include light-bg-text-color(#222);
JJ Allaireefa6ad42016-01-30 13:12:05 -050033
34
35// Theme template ------------------------------
36@import "../template/theme";
37// ---------------------------------------------