I'm attempting to create a background of 3 different color shades of blue. 2 of the 3 shades of blue will be curved and angled slightly.
- Main background blue:
#005A83
- First lighter shade blue:
#036595
- Second lighter shade blue:
#0571A4
I've done some research and I believe I can achieve this by using linear-gradient but I'm still having some issues getting the look I am expecting.
I attempt to re-create something like this image here:
Here is my code sample:
html, body {
height: 100%;
}
body {
background: linear-gradient(65deg, #005A83 20%, #036595 20%, #0571A4 40%, #005A83 40%);
}
I am having issues with 2 main parts of this.
I am having issues showing the 2 lighter shades of blue. Currently only showing 1 color. I've attempted to fix this by moving around some of the percentages used for linear-gradient but it blends in the colors together which is more difficult to see.
How can I curve the lighter shades to match the image above showing different shades of blue.