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 darkblue. |
| 4 | * |
| 5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. |
| 6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
| 7 | */ |
| 8 | |
| 9 | |
| 10 | // Default mixins and settings ----------------- |
| 11 | @import "../template/mixins"; |
| 12 | @import "../template/settings"; |
| 13 | // --------------------------------------------- |
| 14 | |
| 15 | |
| 16 | |
| 17 | // Include theme-specific fonts |
| 18 | @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); |
| 19 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
| 20 | |
| 21 | |
| 22 | // Override theme settings (see ../template/settings.scss) |
| 23 | $mainFont: 'Lato', sans-serif; |
| 24 | $mainColor: #000; |
| 25 | $headingFont: 'News Cycle', Impact, sans-serif; |
| 26 | $headingColor: #000; |
| 27 | $headingTextShadow: none; |
| 28 | $headingTextTransform: none; |
| 29 | $backgroundColor: #fff; |
| 30 | $linkColor: #00008B; |
| 31 | $linkColorHover: lighten( $linkColor, 20% ); |
| 32 | $selectionBackgroundColor: rgba(0, 0, 0, 0.99); |
| 33 | |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 34 | // Change text colors against dark slide backgrounds |
| 35 | @include dark-bg-text-color(#fff); |
JJ Allaire | efa6ad4 | 2016-01-30 13:12:05 -0500 | [diff] [blame] | 36 | |
| 37 | |
| 38 | // Theme template ------------------------------ |
| 39 | @import "../template/theme"; |
| 40 | // --------------------------------------------- |