mirror of
https://github.com/hakimel/reveal.js.git
synced 2025-09-09 06:00:49 +02:00
prettier config, format files
This commit is contained in:
@@ -5,36 +5,35 @@
|
||||
*/
|
||||
|
||||
// Load utils
|
||||
@use "sass:color";
|
||||
@use "template/mixins" as mixins;
|
||||
@use 'sass:color';
|
||||
@use 'template/mixins' as mixins;
|
||||
|
||||
$active-color: #e7ad52;
|
||||
|
||||
// Inject theme variables (with some overrides)
|
||||
@use "template/settings" with (
|
||||
$background-color: #111,
|
||||
@use 'template/settings' with (
|
||||
$background-color: #111,
|
||||
|
||||
$main-font: #{'Open Sans', sans-serif},
|
||||
$main-color: #fff,
|
||||
$main-font: "'Open Sans', sans-serif",
|
||||
$main-color: #fff,
|
||||
|
||||
$heading-color: #fff,
|
||||
$heading-font: #{'Montserrat', Impact, sans-serif},
|
||||
$heading-text-transform: none,
|
||||
$heading-letter-spacing: -0.03em,
|
||||
$heading-color: #fff,
|
||||
$heading-font: "'Montserrat', Impact, sans-serif",
|
||||
$heading-text-transform: none,
|
||||
$heading-letter-spacing: -0.03em,
|
||||
|
||||
$link-color: $active-color,
|
||||
$link-color-hover: color.scale( $active-color, $lightness: 20% ),
|
||||
|
||||
$selection-color: #111,
|
||||
$selection-background-color: $active-color
|
||||
$link-color: $active-color,
|
||||
$link-color-hover: color.scale($active-color, $lightness: 20%),
|
||||
$selection-color: #111,
|
||||
$selection-background-color: $active-color
|
||||
);
|
||||
|
||||
// Inject the theme template
|
||||
@use "template/theme";
|
||||
@use 'template/theme';
|
||||
|
||||
// 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");
|
||||
@import url('https://fonts.googleapis.com/css?family=Montserrat:700');
|
||||
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic');
|
||||
|
||||
// Change text colors against light slide backgrounds
|
||||
@include mixins.light-bg-text-color(#222);
|
||||
|
Reference in New Issue
Block a user