JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 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 |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame^] | 15 | @import url(./fonts/league-gothic/league-gothic.css); |
JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 16 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
| 17 | |
| 18 | /** |
| 19 | * Solarized colors by Ethan Schoonover |
| 20 | */ |
| 21 | html * { |
| 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 | |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame^] | 53 | // Change text colors against light slide backgrounds |
| 54 | @include light-bg-text-color(#222); |
JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 55 | |
| 56 | // Theme template ------------------------------ |
| 57 | @import "../template/theme"; |
| 58 | // --------------------------------------------- |