Dejvino
d3771ec49d
Last commit: commit e1c180565e48ae1b595f44edef319872262a99c7 Merge: b8d97d2 f2b0316 Author: Hakim El Hattab <hakim.elhattab@gmail.com> Date: Wed Aug 9 15:17:25 2023 +0200 Merge pull request #3445 from t-fritsch/fix-scss-watch-tasks fix scss watch tasks broken on syntax error
37 lines
1.0 KiB
SCSS
37 lines
1.0 KiB
SCSS
/**
|
|
* Black theme for reveal.js.
|
|
*
|
|
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
|
|
*/
|
|
|
|
|
|
// Default mixins and settings -----------------
|
|
@import "../template/mixins";
|
|
@import "../template/settings";
|
|
// ---------------------------------------------
|
|
|
|
|
|
// Include theme-specific fonts
|
|
@import url(https://fonts.googleapis.com/css?family=Montserrat:700);
|
|
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
|
|
|
|
|
|
// Override theme settings (see ../template/settings.scss)
|
|
$backgroundColor: #111;
|
|
|
|
$mainFont: 'Open Sans', sans-serif;
|
|
$linkColor: #e7ad52;
|
|
$linkColorHover: lighten( $linkColor, 20% );
|
|
$headingFont: 'Montserrat', Impact, sans-serif;
|
|
$headingTextShadow: none;
|
|
$headingLetterSpacing: -0.03em;
|
|
$headingTextTransform: none;
|
|
$selectionBackgroundColor: #e7ad52;
|
|
|
|
// Change text colors against light slide backgrounds
|
|
@include light-bg-text-color(#222);
|
|
|
|
|
|
// Theme template ------------------------------
|
|
@import "../template/theme";
|
|
// --------------------------------------------- |