Files
v1.pivoine.art/_sass/pro/_dark-mode-dynamic.scss
2025-10-25 12:39:30 +02:00

21 lines
369 B
SCSS

// Copyright (c) 2019 Florian Klampfer <https://qwtel.com/>
@import "pro/dark-mode";
@media screen and (prefers-color-scheme: light) {
body {
@include light-mode();
}
}
@media screen and (prefers-color-scheme: dark) {
body {
@include dark-mode();
}
.tippy-content {
-webkit-font-smoothing: initial;
-moz-osx-font-smoothing: initial;
}
}