Giter Club home page Giter Club logo

Comments (12)

paul1868 avatar paul1868 commented on May 19, 2024 2

@cuongn265 I got it to work by setting mix-blend-mode: difference on the span (in my case it was a div).

from darkmode.js.

hoochanlon avatar hoochanlon commented on May 19, 2024 2
html {
    filter: invert(100%) hue-rotate(180deg);
}
img,video {
    filter: invert(100%) hue-rotate(180deg);
}

from darkmode.js.

dantesadeghi avatar dantesadeghi commented on May 19, 2024 1

For those who have tried the suggestions listed above hoochanlon's comment and not gotten it to work (I was one of them). This works for me:

// Making it so that dark mode does not invert my images.
.darkmode--activated img {
filter: invert(100%);
}

from darkmode.js.

coliff avatar coliff commented on May 19, 2024

shouldn't that be: .darkmode-ignore img instead?
Failing that try: .darkmode--activated .aui-avatar-inner {mix-blend-mode: difference;}

from darkmode.js.

guastallaigor avatar guastallaigor commented on May 19, 2024

Hello, thank you for your response, however I tried both and unfortunately they didn't work.

.darkmode--activated .aui-avatar-inner {mix-blend-mode: difference;}
image

darkmode-ignore img
image

With or without darkmode-ignore class on top of the img component. Not sure if I'm missing something.

from darkmode.js.

hexandcube avatar hexandcube commented on May 19, 2024

Have you tried isolation: isolate; without .darkmode-ignore?

img {
    isolation: isolate;
}

from darkmode.js.

guastallaigor avatar guastallaigor commented on May 19, 2024

Hello, just tried it and didn't work aswell. I notice that the source code is already adding that, but for me is not working:

image


image


image

from darkmode.js.

cuongn265 avatar cuongn265 commented on May 19, 2024

@guastallaigor I faced the same issue today. Not sure if we're in the same context but in my case I've set .darkmode-layer and .darkmode-toggle's z-index to a large number (500). Then I have to set img's z-index to be bigger to make it worked.

from darkmode.js.

guastallaigor avatar guastallaigor commented on May 19, 2024

Hello @cuongn265, sorry I'm currently on vacation, but when I get back I will try what you've said. Thank you for the tip 👍

from darkmode.js.

p44v9n avatar p44v9n commented on May 19, 2024

As noted above, isolation:isolate; isn't working. I added the below to get it to exclude all images on my site

body.darkmode--activated img, body.darkmode--activated .darkmode-ignore {
  mix-blend-mode: difference;
}

This also excludes anything with a class of darkmode-ignore.

Worth pointing out that this gives you a flash of the inverted image if you have the transition on.

from darkmode.js.

srameshr avatar srameshr commented on May 19, 2024

@sandoche Why did you close this? It's not yet working.

from darkmode.js.

netizen-ais avatar netizen-ais commented on May 19, 2024

The solution from the last comment works almost flawless, but in my tests it will cause (updated) iPhones to go sluggish and even overheat.

from darkmode.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.