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

4 color gradient. Yellow ,Blue,Blue & Yellow Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #ffc878, #78afff, #8478ff and #f3ff78. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#ffc878 color

#ffc878 Hue: Yellow Color Name: Mead

#78afff color

#78afffHue: Blue

#8478ff color

#8478ff Hue: Blue

#f3ff78 color

#f3ff78 Hue: Yellow

CSS Gradient

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