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

4 color gradient. Yellow ,Violet,Violet & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #bade79, #9d79de, #cf79de and #88de79. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#bade79 color

#bade79 Hue: Yellow

#9d79de color

#9d79deHue: Violet

#cf79de color

#cf79de Hue: Violet

#88de79 color

#88de79 Hue: Green

CSS Gradient

#stacked-linear-f {
    background:
        linear-gradient(217deg, rgba(186,222,121,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(157,121,222,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(207,121,222,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #bade79, #9d79de);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #bade79, #9d79de);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#bade79, #9d79de);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #bade79, #9d79de); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#bade79 10%, #9d79de 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #bade79, #9d79de);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #bade79 30%, #9d79de 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #bade79, #9d79de);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #bade79, #9d79de);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #bade79, #9d79de);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#bade79 10%, #9d79de 15%);
}
                                    
Copy
#stacked-linear {
    height: 300px;
    background:
        linear-gradient(217deg, rgba(186,222,121,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(157,121,222,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(207,121,222,0.8), rgba(0,0,0,0) 70.71%);
}
                                    
Copy
#stacked-radial {
    height: 300px;
    background:
        radial-gradient(circle at 50% 0,rgba(186,222,121,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 6.7% 75%,rgba(157,121,222,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 93.3% 75%,rgba(207,121,222,0.5),rgba(0,0,0,0) 70.71%);
}
                                    
Copy