website-hadow.fr/assets/css/colors-auto.scss
2025-03-20 15:41:52 +01:00

15 lines
272 B
SCSS

---
---
@import "colors";
:root {
@include colors;
@include light-colors;
}
@media screen and (prefers-color-scheme: dark) {//we would not like to apply dark mode if content is on printer as that would use a lot of ink
:root{
@include dark-colors;
}
}