aboutsummaryrefslogtreecommitdiff
path: root/css/theme/source
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2014-12-18 17:29:51 +0100
committerHakim El Hattab <hakim.elhattab@gmail.com>2014-12-18 17:29:51 +0100
commitc3f9aabe04660af9aad07ec47f559d52d215b742 (patch)
tree2250dab29ddb7bec9978a2f7f364353139bbb078 /css/theme/source
parent96b26514e6d397aba6b39589d510548ddb281fb8 (diff)
downloadfreenode-live-2017-presentation-c3f9aabe04660af9aad07ec47f559d52d215b742.tar
freenode-live-2017-presentation-c3f9aabe04660af9aad07ec47f559d52d215b742.tar.gz
add white theme, reverse of default theme #1018
Diffstat (limited to 'css/theme/source')
-rw-r--r--css/theme/source/white.scss49
1 files changed, 49 insertions, 0 deletions
diff --git a/css/theme/source/white.scss b/css/theme/source/white.scss
new file mode 100644
index 0000000..3b306ca
--- /dev/null
+++ b/css/theme/source/white.scss
@@ -0,0 +1,49 @@
+/**
+ * White theme for reveal.js.
+ *
+ * Copyright (C) 2014 Hakim El Hattab, http://hakim.se
+ */
+
+
+// Default mixins and settings -----------------
+@import "../template/mixins";
+@import "../template/settings";
+// ---------------------------------------------
+
+
+// Include theme-specific fonts
+@import url(https://fonts.googleapis.com/css?family=Montserrat:400);
+@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
+
+
+// Override theme settings (see ../template/settings.scss)
+$backgroundColor: #fff;
+
+$mainColor: #222;
+$headingColor: #222;
+
+$mainFont: 'Open Sans', Helvetica, sans-serif;
+$mainFontSize: 34px;
+$headingFont: 'Montserrat', Helvetica, sans-serif;
+$headingTextShadow: none;
+$headingLetterSpacing: normal;
+$headingTextTransform: uppercase;
+$linkColor: #3992fb;
+$linkColorHover: lighten( $linkColor, 15% );
+$selectionBackgroundColor: lighten( $linkColor, 25% );
+
+$heading1Size: 2.5em;
+$heading2Size: 1.6em;
+$heading3Size: 1.3em;
+$heading4Size: 1.0em;
+
+section.has-light-background {
+ &, h1, h2, h3, h4, h5, h6 {
+ color: #222;
+ }
+}
+
+
+// Theme template ------------------------------
+@import "../template/theme";
+// --------------------------------------------- \ No newline at end of file