| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 1 | /** |
| 2 | * Solarized Light theme for reveal.js. |
| 3 | * Author: Achim Staebler |
| 4 | */ |
| 5 | |
| 6 | |
| 7 | // Default mixins and settings ----------------- |
| Marc Kupietz | cf6e998 | 2026-08-15 15:37:40 +0200 | [diff] [blame] | 8 | @use "sass:color"; |
| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 9 | @import "../template/mixins"; |
| 10 | @import "../template/settings"; |
| 11 | // --------------------------------------------- |
| 12 | |
| 13 | |
| 14 | |
| 15 | // Include theme-specific fonts |
| Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 16 | @import url(./fonts/league-gothic/league-gothic.css); |
| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 17 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
| 18 | |
| 19 | |
| 20 | /** |
| 21 | * Solarized colors by Ethan Schoonover |
| 22 | */ |
| 23 | html * { |
| 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 Kupietz | cf6e998 | 2026-08-15 15:37:40 +0200 | [diff] [blame] | 52 | $linkColorHover: color.scale( $linkColor, $lightness: 20% ); |
| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 53 | $selectionBackgroundColor: $magenta; |
| 54 | |
| Marc Kupietz | 9c036a4 | 2024-05-14 13:17:25 +0200 | [diff] [blame] | 55 | $overlayElementBgColor: 0, 0, 0; |
| 56 | $overlayElementFgColor: 240, 240, 240; |
| 57 | |
| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 58 | // 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 | // --------------------------------------------- |