You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.3 KiB

2 months ago
// Base settings for all themes that can optionally be
// overridden by the super-theme
// Background of the presentation
//$backgroundColor: #E1ECF4;
$backgroundColor: red;
// // Primary/body text
// $mainFont: 'Lato', sans-serif;
// $mainFontSize: 80px;
// $mainColor: #E1ECF4;
//
// // Vertical spacing between blocks of text
// $blockMargin: 20px;
//
// // Headings
// $headingMargin: 0 0 $blockMargin 0;
// $headingFont: 'League Gothic', Impact, sans-serif;
// $headingColor: #eee;
// $headingLineHeight: 1.2;
// $headingLetterSpacing: normal;
// $headingTextTransform: uppercase;
// $headingTextShadow: none;
// $headingFontWeight: normal;
// $heading1TextShadow: $headingTextShadow;
//
$heading1Size: 7.77em;
// $heading2Size: 2.11em;
// $heading3Size: 1.55em;
// $heading4Size: 1.00em;
//
// $codeFont: monospace;
//
// // Links and actions
// $linkColor: #13DAEC;
// $linkColorHover: lighten( $linkColor, 20% );
//
// // Text selection
// $selectionBackgroundColor: #FF5E99;
// $selectionColor: #fff;
//
// // Colors used for UI elements that are overlaid on top of
// // the presentation
// $overlayElementBgColor: 240, 240, 240;
// $overlayElementFgColor: 0, 0, 0;
//
// // Generates the presentation background, can be overridden
// // to return a background image or gradient
@mixin bodyBackground() {
background: $backgroundColor;
}