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 #da9f6d, #71da6d, #6da8da and #d56dda. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#da9f6d color

#da9f6d Hue: Red

#71da6d color

#71da6dHue: Green

#6da8da color

#6da8da Hue: Blue

#d56dda color

#d56dda Hue: Violet

CSS Gradient

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