Files
wehub-resource-sync f4ed7901c3
Module Market Check / Validate modules/ (push) Failing after 1s
Android CI Build / check (push) Failing after 1s
Module Market Publish / Generate submissions.json (push) Failing after 1s
Android CI Build / package-apks (push) Has been skipped
chore: import upstream snapshot with attribution
2026-07-13 12:29:44 +08:00

40 lines
883 B
CSS

/* Web Tint — visual filter overlays. */
#wta-tint-overlay {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 2147483647;
transition: opacity 0.3s ease;
}
#wta-tint-overlay[data-mode='night'] {
mix-blend-mode: multiply;
}
#wta-tint-overlay[data-mode='custom'] {
mix-blend-mode: multiply;
}
/* Grayscale / contrast / invert use CSS filters on the root element. */
html.wta-tint-grayscale {
filter: grayscale(1) !important;
}
html.wta-tint-grayscale img,
html.wta-tint-grayscale video,
html.wta-tint-grayscale canvas,
html.wta-tint-grayscale iframe {
filter: grayscale(0) !important;
}
html.wta-tint-invert {
filter: invert(1) hue-rotate(180deg) !important;
}
html.wta-tint-invert img,
html.wta-tint-invert video,
html.wta-tint-invert canvas,
html.wta-tint-invert iframe {
filter: invert(1) hue-rotate(180deg) !important;
}