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

4 color gradient. Green ,Blue,Blue & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #aac559, #59c5aa, #7459c5 and #c55974. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#aac559 color

#aac559 Hue: Green

#59c5aa color

#59c5aaHue: Blue

#7459c5 color

#7459c5 Hue: Blue

#c55974 color

#c55974 Hue: Red

CSS Gradient

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