Force dark mode for an iframe

From Computers Wiki
Revision as of 23:32, 1 March 2025 by Huntertur (talk | contribs) (Create page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

How to force dark mode for an iframe, based on the approach taken by sewifurs.org for a Google Calendar integration:

@media (prefers-color-scheme: dark) {
    iframe {
        filter: invert(100%) hue-rotate(180deg);
    }
}