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

4 color gradient. Brown ,Blue,Blue & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #ad8e80, #809fad, #8088ad and #ada580. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#ad8e80 color

#ad8e80 Hue: Brown

#809fad color

#809fadHue: Blue

#8088ad color

#8088ad Hue: Blue

#ada580 color

#ada580 Hue: Green

CSS Gradient

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