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

4 color gradient. Green ,Blue,Blue & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #ffed49, #495bff, #9249ff and #b6ff49. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#ffed49 color

#ffed49 Hue: Green

#495bff color

#495bffHue: Blue

#9249ff color

#9249ff Hue: Blue

#b6ff49 color

#b6ff49 Hue: Green

CSS Gradient

#stacked-linear-f {
    background:
        linear-gradient(217deg, rgba(255,237,73,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(73,91,255,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(146,73,255,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #ffed49, #495bff);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #ffed49, #495bff);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#ffed49, #495bff);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #ffed49, #495bff); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#ffed49 10%, #495bff 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #ffed49, #495bff);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #ffed49 30%, #495bff 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #ffed49, #495bff);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #ffed49, #495bff);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #ffed49, #495bff);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#ffed49 10%, #495bff 15%);
}
                                    
Copy
#stacked-linear {
    height: 300px;
    background:
        linear-gradient(217deg, rgba(255,237,73,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(73,91,255,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(146,73,255,0.8), rgba(0,0,0,0) 70.71%);
}
                                    
Copy
#stacked-radial {
    height: 300px;
    background:
        radial-gradient(circle at 50% 0,rgba(255,237,73,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 6.7% 75%,rgba(73,91,255,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 93.3% 75%,rgba(146,73,255,0.5),rgba(0,0,0,0) 70.71%);
}
                                    
Copy