10
CSS for Inverting Only Bright Images in Obsidian
(lemmy.world)
CSS by itself cannot determine the colors present in an image element, so you won't be able to write a style targeting all your images.
If you're willing to attach a class to all your bright images, you could use the filter property.
HTML
<img class="invert" src="some-bright-image.jpg" />
CSS
.invert {
filter: invert(1);
}
thanks