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

4 color gradient. Green ,Blue,Violet & Orange Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #bceba5, #a5dfeb, #d4a5eb and #ebb1a5. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#bceba5 color

#bceba5 Hue: Green

#a5dfeb color

#a5dfebHue: Blue

#d4a5eb color

#d4a5eb Hue: Violet

#ebb1a5 color

#ebb1a5 Hue: Orange

CSS Gradient

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