| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 1 | /** |
| 2 | * A simple theme for reveal.js presentations, similar |
| 3 | * to the default theme. The accent color is brown. |
| 4 | * |
| 5 | * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. |
| 6 | */ |
| 7 | |
| 8 | |
| 9 | // Default mixins and settings ----------------- |
| Marc Kupietz | cf6e998 | 2026-08-15 15:37:40 +0200 | [diff] [blame^] | 10 | @use "sass:color"; |
| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 11 | @import "../template/mixins"; |
| 12 | @import "../template/settings"; |
| 13 | // --------------------------------------------- |
| 14 | |
| 15 | |
| 16 | |
| 17 | // Override theme settings (see ../template/settings.scss) |
| 18 | $mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; |
| 19 | $mainColor: #000; |
| 20 | $headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; |
| 21 | $headingColor: #383D3D; |
| 22 | $headingTextShadow: none; |
| 23 | $headingTextTransform: none; |
| 24 | $backgroundColor: #F0F1EB; |
| 25 | $linkColor: #51483D; |
| Marc Kupietz | cf6e998 | 2026-08-15 15:37:40 +0200 | [diff] [blame^] | 26 | $linkColorHover: color.scale( $linkColor, $lightness: 20% ); |
| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 27 | $selectionBackgroundColor: #26351C; |
| 28 | |
| Marc Kupietz | 9c036a4 | 2024-05-14 13:17:25 +0200 | [diff] [blame] | 29 | $overlayElementBgColor: 0, 0, 0; |
| 30 | $overlayElementFgColor: 240, 240, 240; |
| 31 | |
| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 32 | .reveal a { |
| 33 | line-height: 1.3em; |
| 34 | } |
| 35 | |
| Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 36 | // Change text colors against dark slide backgrounds |
| 37 | @include dark-bg-text-color(#fff); |
| 38 | |
| JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 39 | |
| 40 | // Theme template ------------------------------ |
| 41 | @import "../template/theme"; |
| 42 | // --------------------------------------------- |