CSS Color Screen Merge

Hello Everyone,

Is it possible to do color merges within webflow?
Like this:

If not, which technique should I try?

Thanks!


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

blend modes - for now only by custom code (Before body/head or by Embed-Html element )

In short, create div add class blend and use css class selector .:

<style>
.blend{
   mix-blend-mode: darken;
}
</style>

webflow example + tuturial: http://sab.webflow.io/blend-modes

blend-mode property: CSS mix-blend-mode property

Create circles overlay:
1 - add wrapper div (position relative)
2 - add two divs (circle 1 and 2) - and change position to absolute
Example: https://codepen.io/pen/?&editable=true