blob: 59ef0a95a7ed975de8099ef0c0b4738af5f32efe [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 -----------------
8@import "../template/mixins";
9@import "../template/settings";
10// ---------------------------------------------
11
12
13
14// Include theme-specific fonts
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020015@import url(./fonts/league-gothic/league-gothic.css);
JJ Allaireefa6ad42016-01-30 13:12:05 -050016@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
17
18/**
19 * Solarized colors by Ethan Schoonover
20 */
JJ Allaireefa6ad42016-01-30 13:12:05 -050021
22// Solarized colors
23$base03: #002b36;
24$base02: #073642;
25$base01: #586e75;
26$base00: #657b83;
27$base0: #839496;
28$base1: #93a1a1;
29$base2: #eee8d5;
30$base3: #fdf6e3;
31$yellow: #b58900;
32$orange: #cb4b16;
33$red: #dc322f;
34$magenta: #d33682;
35$violet: #6c71c4;
36$blue: #268bd2;
37$cyan: #2aa198;
38$green: #859900;
39
40// Override theme settings (see ../template/settings.scss)
41$mainColor: $base1;
42$headingColor: $base2;
43$headingTextShadow: none;
44$backgroundColor: $base03;
45$linkColor: $blue;
46$linkColorHover: lighten( $linkColor, 20% );
47$selectionBackgroundColor: $magenta;
48
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020049// Change text colors against light slide backgrounds
50@include light-bg-text-color(#222);
JJ Allaireefa6ad42016-01-30 13:12:05 -050051
52// Theme template ------------------------------
53@import "../template/theme";
54// ---------------------------------------------