I finally figured out why my button colors on my site looked muddy in webkit. Turns out it doesn't really render transparent very well. So `linear-gradient(rgba(255,255,255, .3), transparent)` was basically being read as `linear-gradient(rgba(255,255,255, .3), rgba(0,0,0, 0)`.
non-premultiplied color interpolation issue. https://bugs.webkit.org/show_bug.cgi?id=51844 … https://bugs.webkit.org/show_bug.cgi?id=150940 …
A father of two children 