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 #da8eaa, #8edabe, #8ed0da and #da988e. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#da8eaa color

#da8eaa Hue: Red

#8edabe color

#8edabeHue: Green

#8ed0da color

#8ed0da Hue: Green

#da988e color

#da988e Hue: Red

CSS Gradient

#stacked-linear-f {
    background:
        linear-gradient(217deg, rgba(218,142,170,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(142,218,190,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(142,208,218,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #da8eaa, #8edabe);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #da8eaa, #8edabe);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#da8eaa, #8edabe);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #da8eaa, #8edabe); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#da8eaa 10%, #8edabe 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #da8eaa, #8edabe);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #da8eaa 30%, #8edabe 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #da8eaa, #8edabe);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #da8eaa, #8edabe);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #da8eaa, #8edabe);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#da8eaa 10%, #8edabe 15%);
}
                                    
Copy
#stacked-linear {
    height: 300px;
    background:
        linear-gradient(217deg, rgba(218,142,170,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(142,218,190,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(142,208,218,0.8), rgba(0,0,0,0) 70.71%);
}
                                    
Copy
#stacked-radial {
    height: 300px;
    background:
        radial-gradient(circle at 50% 0,rgba(218,142,170,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 6.7% 75%,rgba(142,218,190,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 93.3% 75%,rgba(142,208,218,0.5),rgba(0,0,0,0) 70.71%);
}
                                    
Copy