Original
This image is unfiltered.
Grayscale
This is using the css property {filter:grayscale;}
filter: grayscale(50%);Saturate
This is using the css property {filter:saturate;}.
filter: saturate(50%);This text is behind the Image
Opacity
This is using the css property {filter:opacity;}
filter: opacity(50%);Brightness
This is using the css property {filter:brightness;}
filter: brightness(50%);Blur
This is using the css property {filter:blur();}. 3px blur will render text unreadable.
filter: blur(1px);Hue-Rotate
This is using the css property {filter:hue-rotate;}
For some unknown reason, hue-rotate does not effect the background color.
filter: hue-rotate(90deg);Invert
This is using the css property {filter:invert;}.
Invert does effect the background color.
filter: invert(100%);Drop Shadow
This is using the css property {filter:drop-shadow;}
filter: drop-shadow(2px 2px 5px rgb(0 0 0 / 0.5));