blob: f3253458faa0e98c2a61f70ff4f54fda246e05eb [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
2 * Solarized Light 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/**
20 * Solarized colors by Ethan Schoonover
21 */
22html * {
23 color-profile: sRGB;
24 rendering-intent: auto;
25}
26
27// Solarized colors
28$base03: #002b36;
29$base02: #073642;
30$base01: #586e75;
31$base00: #657b83;
32$base0: #839496;
33$base1: #93a1a1;
34$base2: #eee8d5;
35$base3: #fdf6e3;
36$yellow: #b58900;
37$orange: #cb4b16;
38$red: #dc322f;
39$magenta: #d33682;
40$violet: #6c71c4;
41$blue: #268bd2;
42$cyan: #2aa198;
43$green: #859900;
44
45// Override theme settings (see ../template/settings.scss)
46$mainColor: $base00;
47$headingColor: $base01;
48$headingTextShadow: none;
49$backgroundColor: $base3;
50$linkColor: $blue;
51$linkColorHover: lighten( $linkColor, 20% );
52$selectionBackgroundColor: $magenta;
53
Marc Kupietz9c036a42024-05-14 13:17:25 +020054$overlayElementBgColor: 0, 0, 0;
55$overlayElementFgColor: 240, 240, 240;
56
JJ Allaireefa6ad42016-01-30 13:12:05 -050057// Background generator
58// @mixin bodyBackground() {
59// @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );
60// }
61
62
63
64// Theme template ------------------------------
65@import "../template/theme";
66// ---------------------------------------------