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 #eee7a4, #a4abee, #c2a4ee and #d0eea4. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#eee7a4 color

#eee7a4 Hue: Yellow

#a4abee color

#a4abeeHue: Blue

#c2a4ee color

#c2a4ee Hue: Blue

#d0eea4 color

#d0eea4 Hue: Green

CSS Gradient

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