Skip to content Skip to sidebar Skip to footer

Safari Renders Wrong Colors When Using Blur Filter

I try to apply a blur filter to a svg elment, but it seems that Safari can't render the colors right. Here is an example of my problem: <

Solution 1:

Safari's default color interpolation (linearRGB) seems to be broken in recent updates. If you switch to sRGB across the board in your filters, you will get more correct results (although they'll all be gamma corrected).

<filter id="f1" x="0" y="0" color-interpolation-filters="sRGB">

Post a Comment for "Safari Renders Wrong Colors When Using Blur Filter"