1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-26 23:04:32 +02:00

fix(review)

This commit is contained in:
louismaxime.piton
2023-09-12 16:00:07 +02:00
parent db4a1efea5
commit 56d9856415
7 changed files with 31 additions and 10 deletions

View File

@@ -44,6 +44,7 @@ $theme-colors-border-subtle: (
"dark": $dark-border-subtle,
) !default;
// scss-docs-end theme-border-subtle-map
$theme-colors-dark: null !default;
$theme-colors-rgb-dark: null !default;
$theme-colors-text-dark: null !default;
@@ -51,7 +52,7 @@ $theme-colors-bg-subtle-dark: null !default;
$theme-colors-border-subtle-dark: null !default;
@if $enable-dark-mode {
// scss-docs-start theme-color-dark-map
// scss-docs-start theme-colors-dark-map
$theme-colors-dark: (
"primary": $primary-dark,
"secondary": $secondary-dark,
@@ -62,7 +63,7 @@ $theme-colors-border-subtle-dark: null !default;
"light": $light-dark,
"dark": $dark-dark,
) !default;
// scss-docs-end theme-color-dark-map
// scss-docs-end theme-colors-dark-map
// scss-docs-start theme-colors-rgb-dark
$theme-colors-rgb-dark: map-loop($theme-colors-dark, to-rgb, "$value") !default;