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

4 color gradient. Green ,Green,Blue & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #bceb00, #00eba4, #2f00eb and #eb0046. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#bceb00 color

#bceb00 Hue: Green

#00eba4 color

#00eba4Hue: Green

#2f00eb color

#2f00eb Hue: Blue

#eb0046 color

#eb0046 Hue: Red

CSS Gradient

#stacked-linear-e {
    background:
        linear-gradient(217deg, rgba(188,235,0,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(0,235,164,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(47,0,235,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #bceb00, #00eba4);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #bceb00, #00eba4);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#bceb00, #00eba4);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #bceb00, #00eba4); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#bceb00 10%, #00eba4 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #bceb00, #00eba4);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #bceb00 30%, #00eba4 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #bceb00, #00eba4);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #bceb00, #00eba4);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #bceb00, #00eba4);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#bceb00 10%, #00eba4 15%);
}
                                    
Copy
#stacked-linear {
    height: 300px;
    background:
        linear-gradient(217deg, rgba(188,235,0,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(0,235,164,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(47,0,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,0,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 6.7% 75%,rgba(0,235,164,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 93.3% 75%,rgba(47,0,235,0.5),rgba(0,0,0,0) 70.71%);
}
                                    
Copy