blob: 7f2d625cae0ac54743845669ea64f2562fd1bd66 [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001/**
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 -----------------
Marc Kupietzcf6e9982026-08-15 15:37:40 +020011@use "sass:color";
JJ Allaireefa6ad42016-01-30 13:12:05 -050012@import "../template/mixins";
13@import "../template/settings";
14// ---------------------------------------------
15
16
17
18// Include theme-specific fonts
19@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
20@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
21
22
23// Override theme settings (see ../template/settings.scss)
24$mainFont: 'Lato', sans-serif;
25$mainColor: #000;
26$headingFont: 'News Cycle', Impact, sans-serif;
27$headingColor: #000;
28$headingTextShadow: none;
29$headingTextTransform: none;
30$backgroundColor: #fff;
31$linkColor: #00008B;
Marc Kupietzcf6e9982026-08-15 15:37:40 +020032$linkColorHover: color.scale( $linkColor, $lightness: 20% );
JJ Allaireefa6ad42016-01-30 13:12:05 -050033$selectionBackgroundColor: rgba(0, 0, 0, 0.99);
34
Marc Kupietz9c036a42024-05-14 13:17:25 +020035$overlayElementBgColor: 0, 0, 0;
36$overlayElementFgColor: 240, 240, 240;
37
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020038// Change text colors against dark slide backgrounds
39@include dark-bg-text-color(#fff);
JJ Allaireefa6ad42016-01-30 13:12:05 -050040
41
42// Theme template ------------------------------
43@import "../template/theme";
44// ---------------------------------------------