Skip to main content Skip to docs navigation

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

4 color gradient. Yellow ,Blue,Blue & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #cb8228, #2871cb, #3028cb and #c3cb28. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cb8228 color

#cb8228 Hue: Yellow

#2871cb color

#2871cbHue: Blue

#3028cb color

#3028cb Hue: Blue

#c3cb28 color

#c3cb28 Hue: Green

CSS Gradient

#stacked-linear-f {
    background:
        linear-gradient(217deg, rgba(203,130,40,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(40,113,203,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(48,40,203,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #cb8228, #2871cb);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #cb8228, #2871cb);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#cb8228, #2871cb);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #cb8228, #2871cb); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#cb8228 10%, #2871cb 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #cb8228, #2871cb);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #cb8228 30%, #2871cb 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #cb8228, #2871cb);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #cb8228, #2871cb);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #cb8228, #2871cb);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#cb8228 10%, #2871cb 15%);
}
                                    
Copy
#stacked-linear {
    height: 300px;
    background:
        linear-gradient(217deg, rgba(203,130,40,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(40,113,203,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(48,40,203,0.8), rgba(0,0,0,0) 70.71%);
}
                                    
Copy
#stacked-radial {
    height: 300px;
    background:
        radial-gradient(circle at 50% 0,rgba(203,130,40,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 6.7% 75%,rgba(40,113,203,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 93.3% 75%,rgba(48,40,203,0.5),rgba(0,0,0,0) 70.71%);
}
                                    
Copy