Force dark mode for an iframe

From Computers Wiki
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);
    }
}