Is there a CSS filter that can transform all pixels of an image into a different color?
I came across one, but it's not quite what I'm looking for:
How to change the color of an image on hover
I found a tutorial that transitions from grayscale to color or color to grayscale.
It may resemble something like this:
.myClass :hover {
filter: color(blue);
}
Requirements: Utilize CSS only (no JavaScript), alter existing image pixel filters to a different color.