Grey ,Green,Grey & Violet Color Gradients - Gradient backgrounds with CSS & PNG

4 color gradient. Grey ,Green,Grey & Violet Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #292320, #212920, #202629 and #272029. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#292320 color

#292320 Hue: Grey

#212920 color

#212920Hue: Green

#202629 color

#202629 Hue: Grey

#272029 color

#272029 Hue: Violet

CSS Gradient

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