I am cutting a Photoshop web layout. I have the following filter I would like to apply in css (I don't want to use an image in which the filter is already applied).
So I used these css properties to generate the following HSL (-64, -67, 0):
-webkit-filter: hue-rotate(-64deg);
-webkit-filter: saturate(-67%);
But, there is a problem because if saturation is less than 0%, browser seems to clip it to 0%.
How can I do a negative saturation using css?