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

4 color gradient. Brown ,Grey,Blue & Grey Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #aeaaa7, #a7abae, #a7a8ae and #aeada7. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#aeaaa7 color

#aeaaa7 Hue: Brown

#a7abae color

#a7abaeHue: Grey

#a7a8ae color

#a7a8ae Hue: Blue

#aeada7 color

#aeada7 Hue: Grey

CSS Gradient

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