fa20-bt/css/theme/source/black.scss

49 lines
1.2 KiB
SCSS
Raw Normal View History

2014-09-28 09:17:16 +00:00
/**
* Black theme for reveal.js. This is the opposite of the 'white' theme.
2014-09-28 09:17:16 +00:00
*
* By Hakim El Hattab, http://hakim.se
2014-09-28 09:17:16 +00:00
*/
// 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);
2014-09-28 09:17:16 +00:00
// Override theme settings (see ../template/settings.scss)
$backgroundColor: #191919;
2014-09-28 09:17:16 +00:00
$mainColor: #fff;
$headingColor: #fff;
$mainFontSize: 42px;
$mainFont: 'Source Sans Pro', Helvetica, sans-serif;
$headingFont: 'Source Sans Pro', Helvetica, sans-serif;
2014-09-28 09:17:16 +00:00
$headingTextShadow: none;
$headingLetterSpacing: normal;
$headingTextTransform: uppercase;
$headingFontWeight: 600;
$linkColor: #42affa;
2014-09-28 09:17:16 +00:00
$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;
}
}
2014-09-28 09:17:16 +00:00
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------