added code to darken images in dark mode. Easier on the eyes.
[theme-danix.xyz.git] / assets / sass / main.scss
index 37f5678..26fae48 100644 (file)
        @import 'layout/footer';
        @import 'layout/wrapper';
        @import 'layout/menu';
+
+// darken images in dark mode
+@media screen and (prefers-color-scheme: dark) {
+       $image-filter: grayscale(50%);
+
+       img:not([src*='.svg']) {
+         filter: $image-filter;
+       }
+}