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

4 color gradient. Violet ,Green,White & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #e4c9fc, #e1fcc9, #c9fcca and #fcc9fb. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#e4c9fc color

#e4c9fc Hue: Violet

#e1fcc9 color

#e1fcc9Hue: Green

#c9fcca color

#c9fcca Hue: White

#fcc9fb color

#fcc9fb Hue: Red

CSS Gradient

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