37 lines
1.0 KiB
SCSS
37 lines
1.0 KiB
SCSS
|
/**
|
||
|
* My custom theme based on how I want things to look;
|
||
|
*/
|
||
|
|
||
|
|
||
|
// Default mixins and settings -----------------
|
||
|
@import "../template/mixins";
|
||
|
@import "../template/settings";
|
||
|
// ---------------------------------------------
|
||
|
|
||
|
|
||
|
|
||
|
// Include theme-specific fonts
|
||
|
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
|
||
|
|
||
|
// Override theme settings (see ../template/settings.scss)
|
||
|
$mainFont: 'Open Sans', sans-serif;
|
||
|
$mainColor: #f2f2f8;
|
||
|
$headingFont: 'Open Sans', sans-serif;
|
||
|
$headingColor: #f2f2f8;
|
||
|
$heading1Size: 2.25em;
|
||
|
$heading2Size: 1.60em;
|
||
|
$heading3Size: 1em;
|
||
|
$headingTextShadow: none;
|
||
|
$headingTextTransform: none;
|
||
|
$backgroundColor: #26272B;
|
||
|
$linkColor: #8C89BE;
|
||
|
$linkColorHover: lighten( $linkColor, 20% );
|
||
|
$selectionBackgroundColor: rgba(0, 0, 0, 0.1);
|
||
|
|
||
|
// Change text colors against dark slide backgrounds
|
||
|
@include dark-bg-text-color(#fff);
|
||
|
|
||
|
|
||
|
// Theme template ------------------------------
|
||
|
@import "../template/theme";
|
||
|
// ---------------------------------------------
|