1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-20 21:41:25 +02:00

update all dependencies

This commit is contained in:
Hakim El Hattab
2024-10-18 14:57:41 +02:00
parent d712c148ec
commit 900bdd4686
23 changed files with 5180 additions and 6496 deletions

View File

@@ -1,6 +1,6 @@
// Exposes theme's variables for easy reuse in CSS for plugin authors
@use "sass:color";
@use 'sass:color';
:root {
--r-background-color: #{$backgroundColor};
@@ -23,7 +23,7 @@
--r-heading4-size: #{$heading4Size};
--r-code-font: #{$codeFont};
--r-link-color: #{$linkColor};
--r-link-color-dark: #{color.scale( $linkColor, $lightness: -15% )};
--r-link-color-dark: #{color.scale($linkColor, $lightness: -15%)};
--r-link-color-hover: #{$linkColorHover};
--r-selection-background-color: #{$selectionBackgroundColor};
--r-selection-color: #{$selectionColor};

View File

@@ -3,6 +3,8 @@
// Base settings for all themes that can optionally be
// overridden by the super-theme
@use 'sass:color';
// Background of the presentation
$backgroundColor: #2b2b2b;