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

4 color gradient. Yellow ,Blue,Violet & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #cbb22d, #2d46cb, #632dcb and #95cb2d. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cbb22d color

#cbb22d Hue: Yellow

#2d46cb color

#2d46cbHue: Blue

#632dcb color

#632dcb Hue: Violet

#95cb2d color

#95cb2d Hue: Green

CSS Gradient

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