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

4 color gradient. Green ,Green,Blue & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #cddf97, #97dfcd, #a997df and #df97a9. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cddf97 color

#cddf97 Hue: Green

#97dfcd color

#97dfcdHue: Green

#a997df color

#a997df Hue: Blue

#df97a9 color

#df97a9 Hue: Red

CSS Gradient

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