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 #dcc863, #6377dc, #8b63dc and #b4dc63. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#dcc863 color

#dcc863 Hue: Yellow

#6377dc color

#6377dcHue: Blue

#8b63dc color

#8b63dc Hue: Violet

#b4dc63 color

#b4dc63 Hue: Green

CSS Gradient

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