reuixiy / hugo-theme-meme

😝 You can’t spell awesome without MemE!
https://io-oi.me/hugo-theme-meme
MIT License
1.02k stars 281 forks source link

Photos are dimmed in dark mode #130

Closed RylandDeGregory closed 4 years ago

RylandDeGregory commented 4 years ago

This is less of an issue and more just asking for help.

What is the setting in config.toml that will allow me to control embedded images being dimmed in dark mode?

Example in light mode: Example image in light mode

Example in dark mode: Example image in dark mode

Thanks :)

reuixiy commented 4 years ago

I see, it's a CSS filter and you can customize it.

~/blog/assets/scss/custom/_custom.scss:

[data-theme="dark"] img {
    filter: none;
}