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 #fab645, #45fa5b, #4589fa and #fa45e3. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#fab645 color

#fab645 Hue: Yellow

#45fa5b color

#45fa5bHue: Green

#4589fa color

#4589fa Hue: Blue

#fa45e3 color

#fa45e3 Hue: Red

CSS Gradient

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