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 #fbd48e, #8eb5fb, #9e8efb and #ecfb8e. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#fbd48e color

#fbd48e Hue: Yellow

#8eb5fb color

#8eb5fbHue: Blue

#9e8efb color

#9e8efb Hue: Blue

#ecfb8e color

#ecfb8e Hue: Green

CSS Gradient

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