JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 1 | /** |
| 2 | * White theme for reveal.js. This is the opposite of the 'black' theme. |
| 3 | * |
Bruce's Thinkpad | 3c3d67d | 2016-07-14 01:43:48 +0800 | [diff] [blame] | 4 | * By Hakim El Hattab, http://hakim.se |
JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | |
| 8 | // Default mixins and settings ----------------- |
| 9 | @import "../template/mixins"; |
| 10 | @import "../template/settings"; |
| 11 | // --------------------------------------------- |
| 12 | |
| 13 | |
| 14 | // Include theme-specific fonts |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 15 | @import url(./fonts/source-sans-pro/source-sans-pro.css); |
JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 16 | |
| 17 | |
| 18 | // Override theme settings (see ../template/settings.scss) |
| 19 | $backgroundColor: #fff; |
| 20 | |
| 21 | $mainColor: #222; |
| 22 | $headingColor: #222; |
| 23 | |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 24 | $mainFontSize: 42px; |
JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 25 | $mainFont: 'Source Sans Pro', Helvetica, sans-serif; |
| 26 | $headingFont: 'Source Sans Pro', Helvetica, sans-serif; |
| 27 | $headingTextShadow: none; |
| 28 | $headingLetterSpacing: normal; |
| 29 | $headingTextTransform: uppercase; |
| 30 | $headingFontWeight: 600; |
| 31 | $linkColor: #2a76dd; |
| 32 | $linkColorHover: lighten( $linkColor, 15% ); |
| 33 | $selectionBackgroundColor: lighten( $linkColor, 25% ); |
| 34 | |
| 35 | $heading1Size: 2.5em; |
| 36 | $heading2Size: 1.6em; |
| 37 | $heading3Size: 1.3em; |
| 38 | $heading4Size: 1.0em; |
| 39 | |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 40 | // Change text colors against dark slide backgrounds |
| 41 | @include dark-bg-text-color(#fff); |
JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 42 | |
| 43 | |
| 44 | // Theme template ------------------------------ |
| 45 | @import "../template/theme"; |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 46 | // --------------------------------------------- |