blob: 457e9e50924d8697cca2f7241a25f2b1eba0d46e [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
2 * Sky theme for reveal.js.
3 *
4 * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 */
6
7
8// Default mixins and settings -----------------
9@import "../template/mixins";
10@import "../template/settings";
11// ---------------------------------------------
12
13
14
15// Include theme-specific fonts
16@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
17@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
18
19
20// Override theme settings (see ../template/settings.scss)
21$mainFont: 'Open Sans', sans-serif;
22$mainColor: #333;
23$headingFont: 'Quicksand', sans-serif;
24$headingColor: #333;
25$headingLetterSpacing: -0.08em;
26$headingTextShadow: none;
27$backgroundColor: #f7fbfc;
28$linkColor: #3b759e;
29$linkColorHover: lighten( $linkColor, 20% );
30$selectionBackgroundColor: #134674;
31
Marc Kupietz9c036a42024-05-14 13:17:25 +020032$overlayElementBgColor: 0, 0, 0;
33$overlayElementFgColor: 240, 240, 240;
34
JJ Allaireefa6ad42016-01-30 13:12:05 -050035// Fix links so they are not cut off
36.reveal a {
37 line-height: 1.3em;
38}
39
40// Background generator
41@mixin bodyBackground() {
42 @include radial-gradient( #add9e4, #f7fbfc );
43}
44
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020045// Change text colors against dark slide backgrounds
46@include dark-bg-text-color(#fff);
47
JJ Allaireefa6ad42016-01-30 13:12:05 -050048
49
50// Theme template ------------------------------
51@import "../template/theme";
52// ---------------------------------------------