You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
447 B

5 months ago
  1. // scss-docs-start color-mode-mixin
  2. @mixin color-mode($mode: light, $root: false) {
  3. @if $color-mode-type == "media-query" {
  4. @if $root == true {
  5. @media (prefers-color-scheme: $mode) {
  6. :root {
  7. @content;
  8. }
  9. }
  10. } @else {
  11. @media (prefers-color-scheme: $mode) {
  12. @content;
  13. }
  14. }
  15. } @else {
  16. [data-bs-theme="#{$mode}"] {
  17. @content;
  18. }
  19. }
  20. }
  21. // scss-docs-end color-mode-mixin