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 #bf9022, #22bf41, #2251bf and #bf229f. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#bf9022 color

#bf9022 Hue: Yellow

#22bf41 color

#22bf41Hue: Green

#2251bf color

#2251bf Hue: Blue

#bf229f color

#bf229f Hue: Red

CSS Gradient

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