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

4 color gradient. Red ,Green,Green & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #e902a4, #02e947, #02e9ba and #e90231. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#e902a4 color

#e902a4 Hue: Red

#02e947 color

#02e947Hue: Green

#02e9ba color

#02e9ba Hue: Green

#e90231 color

#e90231 Hue: Red

CSS Gradient

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