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

4 color gradient. Red ,Green,Blue & Blue Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #edaeb6, #d5edae, #aeede5 and #c5aeed. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#edaeb6 color

#edaeb6 Hue: Red

#d5edae color

#d5edaeHue: Green

#aeede5 color

#aeede5 Hue: Blue

#c5aeed color

#c5aeed Hue: Blue

CSS Gradient

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