I'm looking to design a vibrant and dynamic CSS gradient background with multiple colors in a "free flow" style. The inspiration is an eye-catching image like this:
https://i.sstatic.net/UYj7Z.png
From my research, it seems that utilizing a background blend mode, such as screen, will be necessary for achieving the desired effect:
background-blend-mode: screen;
The gradient scheme I have in mind consists of five distinct colors:
https://i.sstatic.net/CUQbT.png
A: #ecedee B: #fff0be C: #fbdce7 D: #e2fae1 E: #d3d5ed
Although I found a solution similar to the desired outcome called the "Spectrum background" in an informative 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;
}
I am uncertain about expanding on this concept by incorporating additional colors and arranging them precisely as illustrated in the attached image. Assistance in achieving this goal would be greatly appreciated.