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

4 color gradient. Red ,Green,Green & Blue Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #ab1a78, #ab951a, #1aab4d and #1a2fab. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#ab1a78 color

#ab1a78 Hue: Red

#ab951a color

#ab951aHue: Green

#1aab4d color

#1aab4d Hue: Green

#1a2fab color

#1a2fab Hue: Blue

CSS Gradient

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