Hey Guys,
Was wondering if you could help me with creating a grayscale image filter (that’s from Red/White, rather than Black/White)
I got this method which works great for jpg’s
.filtered {
background: #ff0000;
}
.filtered img {
mix-blend-mode: screen;
-webkit-filter: grayscale(100%);
filter: grayscale(100%)
opacity: 1;
}
Unfortunately, this doesn’t work for PNG’s as it fills the whole background.
Im trying to achieve this
(Emulated Images)
Change an image

To This

What i end up creating


