mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
12 lines
396 B
CSS
12 lines
396 B
CSS
/* For black-on-white/transparent images at handbook/text-anchors.html */
|
|
@media (prefers-color-scheme: light) {
|
|
body[data-theme="dark"] #text-anchors img {
|
|
filter: invert(1) brightness(0.85) hue-rotate(-60deg);
|
|
}
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
body:not([data-theme="light"]) #text-anchors img {
|
|
filter: invert(1) brightness(0.85) hue-rotate(-60deg);
|
|
}
|
|
}
|