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

4 color gradient. Green ,Blue,Violet & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #bfea1a, #1aeaad, #451aea and #ea1a57. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#bfea1a color

#bfea1a Hue: Green

#1aeaad color

#1aeaadHue: Blue

#451aea color

#451aea Hue: Violet

#ea1a57 color

#ea1a57 Hue: Red

CSS Gradient

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