Yellow ,Blue,Blue & Green Color Gradients - Gradient backgrounds with CSS & PNG

4 color gradient. Yellow ,Blue,Blue & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #eca163, #63aeec, #6369ec and #ece663. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#eca163 color

#eca163 Hue: Yellow

#63aeec color

#63aeecHue: Blue

#6369ec color

#6369ec Hue: Blue

#ece663 color

#ece663 Hue: Green

CSS Gradient

#stacked-linear-f {
    background:
        linear-gradient(217deg, rgba(236,161,99,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(99,174,236,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(99,105,236,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #eca163, #63aeec);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #eca163, #63aeec);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#eca163, #63aeec);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #eca163, #63aeec); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#eca163 10%, #63aeec 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #eca163, #63aeec);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #eca163 30%, #63aeec 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #eca163, #63aeec);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #eca163, #63aeec);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #eca163, #63aeec);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#eca163 10%, #63aeec 15%);
}
                                    
Copy
#stacked-linear {
    height: 300px;
    background:
        linear-gradient(217deg, rgba(236,161,99,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(99,174,236,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(99,105,236,0.8), rgba(0,0,0,0) 70.71%);
}
                                    
Copy
#stacked-radial {
    height: 300px;
    background:
        radial-gradient(circle at 50% 0,rgba(236,161,99,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 6.7% 75%,rgba(99,174,236,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 93.3% 75%,rgba(99,105,236,0.5),rgba(0,0,0,0) 70.71%);
}
                                    
Copy