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

4 color gradient. Green ,Blue,Red & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #9bf159, #af59f1, #f159e7 and #59f163. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#9bf159 color

#9bf159 Hue: Green

#af59f1 color

#af59f1Hue: Blue

#f159e7 color

#f159e7 Hue: Red

#59f163 color

#59f163 Hue: Green

CSS Gradient

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