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 #bfec51, #51eccb, #7e51ec and #ec5171. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#bfec51 color

#bfec51 Hue: Green

#51eccb color

#51eccbHue: Blue

#7e51ec color

#7e51ec Hue: Blue

#ec5171 color

#ec5171 Hue: Red

CSS Gradient

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