Hi, everyone
I was wondering why the gradient colors are showing every different on chrome compared to viewing it on safari browser.
Here is a testing website to view, any help is greatly appreciated.
Hi, everyone
I was wondering why the gradient colors are showing every different on chrome compared to viewing it on safari browser.
Here is a testing website to view, any help is greatly appreciated.
Hi there,
Safari interprets gradients to transparency differently than other browsers. Specifically, Safari interprets gradients to transparency as “transparent black,” which means the transparent color will appear black for Safari users. To work around this, you can:
Hopefully this helps! If you still need assistance, please reply here so somebody from the community can help.
The difference in gradient colors between Chrome and Safari is likely due to how each browser renders CSS gradients, especially with certain blending modes or transparency settings. To ensure consistency, use background: linear-gradient()
with explicit color values in RGBA format instead of relying on opacity settings. Also, check if -webkit-background-clip: text
or mix-blend-mode
is affecting how Safari interprets the gradient. If you’re using Webflow’s gradient tool, try manually setting the gradient stops with precise color values. Additionally, adding background-blend-mode: normal;
can sometimes help unify the appearance across browsers.