I want to create a multi colored "free flow" CSS gradient background. It should look something like this:
It seems I need to use a background blend mode. For example screen:
background-blend-mode: screen;
The gradient has five colors:
A: #ecedee B: #fff0be C: #fbdce7 D: #e2fae1 E: #d3d5ed
The closest solution I can find is the "Spectrum background" in this blog post
.spectrum-background {
background:
linear-gradient(red, transparent),
linear-gradient(to top left, lime, transparent),
linear-gradient(to top right, blue, transparent);
background-blend-mode: screen;
}
But I am not sure how I can add more colors and position them like on the attached image. I hope someone can help.