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