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 #babe14, #14be6d, #1814be and #be1465. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#babe14 color

#babe14 Hue: Green

#14be6d color

#14be6dHue: Green

#1814be color

#1814be Hue: Blue

#be1465 color

#be1465 Hue: Red

CSS Gradient

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