1/**
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
15@import url(../../lib/font/league-gothic/league-gothic.css);
16@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
17
18/**
19 * Solarized colors by Ethan Schoonover
20 */
21html * {
22	color-profile: sRGB;
23	rendering-intent: auto;
24}
25
26// Solarized colors
27$base03:    #002b36;
28$base02:    #073642;
29$base01:    #586e75;
30$base00:    #657b83;
31$base0:     #839496;
32$base1:     #93a1a1;
33$base2:     #eee8d5;
34$base3:     #fdf6e3;
35$yellow:    #b58900;
36$orange:    #cb4b16;
37$red:       #dc322f;
38$magenta:   #d33682;
39$violet:    #6c71c4;
40$blue:      #268bd2;
41$cyan:      #2aa198;
42$green:     #859900;
43
44// Override theme settings (see ../template/settings.scss)
45$mainColor: $base1;
46$headingColor: $base2;
47$headingTextShadow: none;
48$backgroundColor: $base03;
49$linkColor: $blue;
50$linkColorHover: lighten( $linkColor, 20% );
51$selectionBackgroundColor: $magenta;
52
53
54
55// Theme template ------------------------------
56@import "../template/theme";
57// ---------------------------------------------
58