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

4 color gradient. Red ,Green,Blue & Violet Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #dc41b6, #41dc67, #41dcb4 and #dc4169. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#dc41b6 color

#dc41b6 Hue: Red

#41dc67 color

#41dc67Hue: Green

#41dcb4 color

#41dcb4 Hue: Blue

#dc4169 color

#dc4169 Hue: Violet

CSS Gradient

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