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 #cbc044, #444fcb, #7c44cb and #93cb44. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cbc044 color

#cbc044 Hue: Yellow

#444fcb color

#444fcbHue: Blue

#7c44cb color

#7c44cb Hue: Blue

#93cb44 color

#93cb44 Hue: Green

CSS Gradient

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