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

4 color gradient. Yellow ,Violet,Violet & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #cbc478, #787fcb, #9b78cb and #a8cb78. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cbc478 color

#cbc478 Hue: Yellow

#787fcb color

#787fcbHue: Violet

#9b78cb color

#9b78cb Hue: Violet

#a8cb78 color

#a8cb78 Hue: Green

CSS Gradient

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