blob: de7d92f15e2cfa5fa7f04a81a19d9ddd3deff885 [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
2 * Solarized Dark theme for reveal.js.
3 * Author: Achim Staebler
4 */
5
6
7// Default mixins and settings -----------------
Marc Kupietzcf6e9982026-08-15 15:37:40 +02008@use "sass:color";
JJ Allaireefa6ad42016-01-30 13:12:05 -05009@import "../template/mixins";
10@import "../template/settings";
11// ---------------------------------------------
12
13
14
15// Include theme-specific fonts
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020016@import url(./fonts/league-gothic/league-gothic.css);
JJ Allaireefa6ad42016-01-30 13:12:05 -050017@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
18
19/**
20 * Solarized colors by Ethan Schoonover
21 */
JJ Allaireefa6ad42016-01-30 13:12:05 -050022
23// Solarized colors
24$base03: #002b36;
25$base02: #073642;
26$base01: #586e75;
27$base00: #657b83;
28$base0: #839496;
29$base1: #93a1a1;
30$base2: #eee8d5;
31$base3: #fdf6e3;
32$yellow: #b58900;
33$orange: #cb4b16;
34$red: #dc322f;
35$magenta: #d33682;
36$violet: #6c71c4;
37$blue: #268bd2;
38$cyan: #2aa198;
39$green: #859900;
40
41// Override theme settings (see ../template/settings.scss)
42$mainColor: $base1;
43$headingColor: $base2;
44$headingTextShadow: none;
45$backgroundColor: $base03;
46$linkColor: $blue;
Marc Kupietzcf6e9982026-08-15 15:37:40 +020047$linkColorHover: color.scale( $linkColor, $lightness: 20% );
JJ Allaireefa6ad42016-01-30 13:12:05 -050048$selectionBackgroundColor: $magenta;
49
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020050// Change text colors against light slide backgrounds
51@include light-bg-text-color(#222);
JJ Allaireefa6ad42016-01-30 13:12:05 -050052
53// Theme template ------------------------------
54@import "../template/theme";
55// ---------------------------------------------