summaryrefslogtreecommitdiffstats
path: root/layouts/partials/styles.html
blob: cc6d930afec0b7adfa88b2f08e07b2e68118f9fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ if ne .Site.Params.disableDarkImage true }}
<style>
    @media (prefers-color-scheme: dark) {
        body[data-theme='auto'] img {
            filter: brightness(60%);
        }
    }

    body[data-theme='dark'] img {
        filter: brightness(60%);
    }
</style>
{{ end }}