Page 1 of 1

DarkMode: how isolate?

Posted: Sun Jul 31, 2022 7:23 pm
by MorningLight
Hi !

I'm trying the DARKMODE extension and I saw on the original Github project (https://github.com/sandoche/Darkmode.js) that we can isolate the foreground color for any page component using:
.darkmode--activated p, .darkmode--activated li {
color: #000;
}

.button {
isolation: isolate;
}

.darkmode--activated .logo {
mix-blend-mode: difference;
}
But since it seems be built at the runtime, how could I set an image (like "Image1") or button (like "MyBtn1") to do not change its foreground color?

I appreciate any help.

Re: DarkMode: how isolate?

Posted: Sun Aug 07, 2022 4:31 pm
by wwonderfull
The extension which has been provided is AS IS according to the licence. Anything extra you need to modify or add is totally on your skills. With a bit of simple learning you can do dark mod without even the need of the darkmod js its more like learning the real way of doing it. https://www.w3schools.com/howto/howto_j ... k_mode.asp

It shows how classes can be used to easily switch between light mod and darkmod. I prefer this way of doing darkmod than using the extension itself.