mirror of
https://github.com/twbs/bootstrap.git
synced 2025-11-13 00:04:29 -05:00
23 lines
501 B
SCSS
23 lines
501 B
SCSS
// scss-docs-start color-mode-mixin
|
|
@mixin color-mode($mode: light, $root: false) {
|
|
@if $color-mode-type == "media-query" {
|
|
@if $root == true {
|
|
@media (prefers-color-scheme: $mode) {
|
|
:root {
|
|
@content;
|
|
}
|
|
}
|
|
} @else {
|
|
@media (prefers-color-scheme: $mode) {
|
|
@content;
|
|
}
|
|
}
|
|
} @else {
|
|
$parent-selector: &;
|
|
@at-root [data-bs-theme="#{$mode}"] #{$parent-selector} {
|
|
@content;
|
|
}
|
|
}
|
|
}
|
|
// scss-docs-end color-mode-mixin
|