diff options
author | Chris Lawrence | 2015-10-02 20:47:19 -0400 |
---|---|---|
committer | Chris Lawrence | 2015-10-02 20:47:19 -0400 |
commit | 69104e8e04c14ac91d396a41e0c05351ec2a96bf (patch) | |
tree | b95b95b20746a2a4d93fec64c4c4b10e6be85123 /css/theme/source/white.scss | |
parent | 54082a8d76e8c12bb5b424f7ff21644632f054aa (diff) | |
parent | 01c55d4cf6ff60772be8a86320c4a5bcd7719a05 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'css/theme/source/white.scss')
-rw-r--r-- | css/theme/source/white.scss | 49 |
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..4c5b647 --- /dev/null +++ b/css/theme/source/white.scss @@ -0,0 +1,49 @@ +/** + * White theme for reveal.js. This is the opposite of the 'black' theme. + * + * Copyright (C) 2015 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + +// Include theme-specific fonts +@import url(../../lib/font/source-sans-pro/source-sans-pro.css); + + +// Override theme settings (see ../template/settings.scss) +$backgroundColor: #fff; + +$mainColor: #222; +$headingColor: #222; + +$mainFontSize: 38px; +$mainFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingTextShadow: none; +$headingLetterSpacing: normal; +$headingTextTransform: uppercase; +$headingFontWeight: 600; +$linkColor: #2a76dd; +$linkColorHover: lighten( $linkColor, 15% ); +$selectionBackgroundColor: lighten( $linkColor, 25% ); + +$heading1Size: 2.5em; +$heading2Size: 1.6em; +$heading3Size: 1.3em; +$heading4Size: 1.0em; + +section.has-dark-background { + &, h1, h2, h3, h4, h5, h6 { + color: #fff; + } +} + + +// Theme template ------------------------------ +@import "../template/theme"; +// ---------------------------------------------
\ No newline at end of file |