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

4 color gradient. Green ,Violet,Violet & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #abdf50, #8450df, #cc50df and #63df50. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#abdf50 color

#abdf50 Hue: Green

#8450df color

#8450dfHue: Violet

#cc50df color

#cc50df Hue: Violet

#63df50 color

#63df50 Hue: Green

CSS Gradient

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