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

2 color gradient. Green & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #aad1cd and #d1aaae. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#aad1cd color

#aad1cd Hue: Green

#d1aaae color

#d1aaaeHue: Red

CSS Gradient

#stacked-linear-a {
    background:
        linear-gradient(217deg, rgba(170,209,205,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(209,170,174,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(170,209,205,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #aad1cd, #d1aaae);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #aad1cd, #d1aaae);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#aad1cd, #d1aaae);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #aad1cd, #d1aaae); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#aad1cd 10%, #d1aaae 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #aad1cd, #d1aaae);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #aad1cd 30%, #d1aaae 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #aad1cd, #d1aaae);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #aad1cd, #d1aaae);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #aad1cd, #d1aaae);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#aad1cd 10%, #d1aaae 15%);
}
                                    
Copy