• Resolved tobiascadin

    (@tobiascadin)


    I have a black and white page, so I put a universal css to invert the entire site and it works really well.

    .wp-night-mode-on {

    filter: invert(100%);

    }

    BUT is there a way to add exceptions for all the images on the site?

Viewing 1 replies (of 1 total)
  • Plugin Author markoarula

    (@markoarula)

    Hi,

    have you tried with something like this:

    body.wp-night-mode-on *:not(img) {
        background: #1e1e1e;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Exceptions to invert filter’ is closed to new replies.