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

4 color gradient. Yellow ,Green,Blue & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #fcc900, #00fc4b, #0033fc and #fc00b1. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#fcc900 color

#fcc900 Hue: Yellow

#00fc4b color

#00fc4bHue: Green

#0033fc color

#0033fc Hue: Blue

#fc00b1 color

#fc00b1 Hue: Red

CSS Gradient

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