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

4 color gradient. Green ,Blue,Violet & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #cbcc2c, #2d2ccc, #7d2ccc and #7bcc2c. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cbcc2c color

#cbcc2c Hue: Green

#2d2ccc color

#2d2cccHue: Blue

#7d2ccc color

#7d2ccc Hue: Violet

#7bcc2c color

#7bcc2c Hue: Green

CSS Gradient

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