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

4 color gradient. Green ,Blue,Violet & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #cefb88, #88fbee, #b588fb and #fb8894. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cefb88 color

#cefb88 Hue: Green

#88fbee color

#88fbeeHue: Blue

#b588fb color

#b588fb Hue: Violet

#fb8894 color

#fb8894 Hue: Red

CSS Gradient

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