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:
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?.darkmode--activated p, .darkmode--activated li {
color: #000;
}
.button {
isolation: isolate;
}
.darkmode--activated .logo {
mix-blend-mode: difference;
}
I appreciate any help.