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

4 color gradient. Green ,Blue,Violet & Violet Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #addf3c, #3cdfbf, #6e3cdf and #df3c5c. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#addf3c color

#addf3c Hue: Green

#3cdfbf color

#3cdfbfHue: Blue

#6e3cdf color

#6e3cdf Hue: Violet

#df3c5c color

#df3c5c Hue: Violet

CSS Gradient

#stacked-linear-e {
    background:
        linear-gradient(217deg, rgba(173,223,60,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(60,223,191,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(110,60,223,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #addf3c, #3cdfbf);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #addf3c, #3cdfbf);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#addf3c, #3cdfbf);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #addf3c, #3cdfbf); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#addf3c 10%, #3cdfbf 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #addf3c, #3cdfbf);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #addf3c 30%, #3cdfbf 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #addf3c, #3cdfbf);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #addf3c, #3cdfbf);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #addf3c, #3cdfbf);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#addf3c 10%, #3cdfbf 15%);
}
                                    
Copy
#stacked-linear {
    height: 300px;
    background:
        linear-gradient(217deg, rgba(173,223,60,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(60,223,191,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(110,60,223,0.8), rgba(0,0,0,0) 70.71%);
}
                                    
Copy
#stacked-radial {
    height: 300px;
    background:
        radial-gradient(circle at 50% 0,rgba(173,223,60,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 6.7% 75%,rgba(60,223,191,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 93.3% 75%,rgba(110,60,223,0.5),rgba(0,0,0,0) 70.71%);
}
                                    
Copy