Skip to main content Skip to docs navigation

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

4 color gradient. Red ,Orange,Green & Blue Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #ee01bf, #eea601, #01ee30 and #0148ee. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#ee01bf color

#ee01bf Hue: Red

#eea601 color

#eea601Hue: Orange

#01ee30 color

#01ee30 Hue: Green

#0148ee color

#0148ee Hue: Blue

CSS Gradient

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