blob: 2244c7e97ac6e3bd8d1b4e086d7063b007c9208a [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 -----------------
Marc Kupietzcf6e9982026-08-15 15:37:40 +02009@use "sass:color";
JJ Allaireefa6ad42016-01-30 13:12:05 -050010@import "../template/mixins";
11@import "../template/settings";
12// ---------------------------------------------
13
14
15
16// Include theme-specific fonts
17@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
18@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
19
20
21// Override theme settings (see ../template/settings.scss)
22$mainFont: 'Open Sans', sans-serif;
23$mainColor: #333;
24$headingFont: 'Quicksand', sans-serif;
25$headingColor: #333;
26$headingLetterSpacing: -0.08em;
27$headingTextShadow: none;
28$backgroundColor: #f7fbfc;
29$linkColor: #3b759e;
Marc Kupietzcf6e9982026-08-15 15:37:40 +020030$linkColorHover: color.scale( $linkColor, $lightness: 20% );
JJ Allaireefa6ad42016-01-30 13:12:05 -050031$selectionBackgroundColor: #134674;
32
Marc Kupietz9c036a42024-05-14 13:17:25 +020033$overlayElementBgColor: 0, 0, 0;
34$overlayElementFgColor: 240, 240, 240;
35
JJ Allaireefa6ad42016-01-30 13:12:05 -050036// Fix links so they are not cut off
37.reveal a {
38 line-height: 1.3em;
39}
40
41// Background generator
42@mixin bodyBackground() {
43 @include radial-gradient( #add9e4, #f7fbfc );
44}
45
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020046// Change text colors against dark slide backgrounds
47@include dark-bg-text-color(#fff);
48
JJ Allaireefa6ad42016-01-30 13:12:05 -050049
50
51// Theme template ------------------------------
52@import "../template/theme";
53// ---------------------------------------------