You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The mix-blend-mode CSS property specifies how colors are blended together. By default the mix-blend-mode is set to normal, which is mostly how our flattenColor algorithm works. But by changing the mix-blend-mode the background color can be completely different.
For example, taking this HTML, the output is faint green color.
The mix-blend-mode CSS property specifies how colors are blended together. By default the
mix-blend-mode
is set tonormal
, which is mostly how ourflattenColor
algorithm works. But by changing the mix-blend-mode the background color can be completely different.For example, taking this HTML, the output is faint green color.
But if we change the blend mode we get a completely different color, in this case a faint pink color.
See https://www.w3.org/TR/compositing-1/#blending
The text was updated successfully, but these errors were encountered: