Infra: Only invert image brightness, not hue (#2949)

Since inversion doesn’t just affect brightness, but also hue, there’s a problem: Some background colors have perceptually less contrast with their text when hue rotated. This rotates their hue back, fixing the contrast issue.
This commit is contained in:
Philipp A 2023-01-06 17:33:58 +01:00 committed by GitHub
parent 32c692b214
commit 631ee6ce60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
}
img.invert-in-dark-mode {
filter: var(--dark, invert(1));
filter: var(--dark, invert(1) hue-rotate(.5turn));
}
/* Set master rules */