blob: 978cfc9e0add8e15aba7183f3619c3f8d8b921ca [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 -----------------
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
16@import url(https://fonts.googleapis.com/css?family=Montserrat:700);
17@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
18
19
20// Override theme settings (see ../template/settings.scss)
21$backgroundColor: #111;
22
23$mainFont: 'Open Sans', sans-serif;
24$linkColor: #e7ad52;
Marc Kupietzcf6e9982026-08-15 15:37:40 +020025$linkColorHover: color.scale( $linkColor, $lightness: 20% );
JJ Allaireefa6ad42016-01-30 13:12:05 -050026$headingFont: 'Montserrat', Impact, sans-serif;
27$headingTextShadow: none;
28$headingLetterSpacing: -0.03em;
29$headingTextTransform: none;
30$selectionBackgroundColor: #e7ad52;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020031
32// Change text colors against light slide backgrounds
33@include light-bg-text-color(#222);
JJ Allaireefa6ad42016-01-30 13:12:05 -050034
35
36// Theme template ------------------------------
37@import "../template/theme";
38// ---------------------------------------------