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 #cbfd42, #7442fd, #d242fd and #6dfd42. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cbfd42 color

#cbfd42 Hue: Green

#7442fd color

#7442fdHue: Blue

#d242fd color

#d242fd Hue: Violet

#6dfd42 color

#6dfd42 Hue: Green

CSS Gradient

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