mirror of
https://github.com/hakimel/reveal.js.git
synced 2025-09-09 22:20:51 +02:00
prettier config, format files
This commit is contained in:
@@ -5,40 +5,39 @@
|
||||
*/
|
||||
|
||||
// Load utils
|
||||
@use "sass:color";
|
||||
@use "template/mixins" as mixins;
|
||||
@use 'sass:color';
|
||||
@use 'template/mixins' as mixins;
|
||||
|
||||
$active-color: #42affa;
|
||||
|
||||
// Inject theme variables (with some overrides)
|
||||
@use "template/settings" with (
|
||||
$background-color: #191919,
|
||||
@use 'template/settings' with (
|
||||
$background-color: #191919,
|
||||
|
||||
$main-font: #{'Source Sans Pro', Helvetica, sans-serif},
|
||||
$main-font-size: 42px,
|
||||
$main-color: #fff,
|
||||
$main-font: "'Source Sans Pro', Helvetica, sans-serif",
|
||||
$main-font-size: 42px,
|
||||
$main-color: #fff,
|
||||
|
||||
$heading-color: #fff,
|
||||
$heading-font: #{'Source Sans Pro', Helvetica, sans-serif},
|
||||
$heading-font-weight: 600,
|
||||
$heading-color: #fff,
|
||||
$heading-font: "'Source Sans Pro', Helvetica, sans-serif",
|
||||
$heading-font-weight: 600,
|
||||
|
||||
$heading1-size: 2.5em,
|
||||
$heading2-size: 1.6em,
|
||||
$heading3-size: 1.3em,
|
||||
$heading4-size: 1.0em,
|
||||
$heading1-size: 2.5em,
|
||||
$heading2-size: 1.6em,
|
||||
$heading3-size: 1.3em,
|
||||
$heading4-size: 1em,
|
||||
|
||||
$link-color: $active-color,
|
||||
$link-color-hover: color.scale( $active-color, $lightness: 15% ),
|
||||
|
||||
$selection-color: #fff,
|
||||
$selection-background-color: color.scale( $active-color, $lightness: -35% )
|
||||
$link-color: $active-color,
|
||||
$link-color-hover: color.scale($active-color, $lightness: 15%),
|
||||
$selection-color: #fff,
|
||||
$selection-background-color: color.scale($active-color, $lightness: -35%)
|
||||
);
|
||||
|
||||
// Inject the theme template
|
||||
@use "template/theme";
|
||||
@use 'template/theme';
|
||||
|
||||
// Include theme-specific fonts
|
||||
@import url("./fonts/source-sans-pro/source-sans-pro.css");
|
||||
@import url('./fonts/source-sans-pro/source-sans-pro.css');
|
||||
|
||||
// Change text colors against light slide backgrounds
|
||||
@include mixins.light-bg-text-color(#222);
|
||||
|
Reference in New Issue
Block a user