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

4 color gradient. Red ,Yellow,Green & Blue Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #dd14c8, #dd8d14, #14dd29 and #1463dd. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#dd14c8 color

#dd14c8 Hue: Red

#dd8d14 color

#dd8d14Hue: Yellow

#14dd29 color

#14dd29 Hue: Green

#1463dd color

#1463dd Hue: Blue

CSS Gradient

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