diff options
author | Marvin Borner | 2019-06-16 17:37:09 +0200 |
---|---|---|
committer | Marvin Borner | 2019-06-16 17:37:09 +0200 |
commit | 723e7a4aafd6e25d154dbe6e5912af33086569b1 (patch) | |
tree | f537ba2c3a34ffe9fab48acfbeb518cef8d2e84f /presentation/css/theme/source/black.scss |
Initial layout
Diffstat (limited to 'presentation/css/theme/source/black.scss')
-rw-r--r-- | presentation/css/theme/source/black.scss | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/presentation/css/theme/source/black.scss b/presentation/css/theme/source/black.scss new file mode 100644 index 0000000..4720c8a --- /dev/null +++ b/presentation/css/theme/source/black.scss @@ -0,0 +1,49 @@ +/** + * Black theme for reveal.js. This is the opposite of the 'white' theme. + * + * By 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: #191919; + +$mainColor: #fff; +$headingColor: #fff; + +$mainFontSize: 42px; +$mainFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingFont: 'Source Sans Pro', Helvetica, sans-serif; +$headingTextShadow: none; +$headingLetterSpacing: normal; +$headingTextTransform: uppercase; +$headingFontWeight: 600; +$linkColor: #42affa; +$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 |