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
34section.has-dark-background {
35	&, h1, h2, h3, h4, h5, h6 {
36		color: #fff;
37	}
38}
39
40
41// Theme template ------------------------------
42@import "../template/theme";
43// ---------------------------------------------