Skip to main content Skip to docs navigation

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

4 color gradient. Green ,Blue,Blue & Violet Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #cdca5d, #5dcd92, #5d60cd and #cd5d98. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cdca5d color

#cdca5d Hue: Green

#5dcd92 color

#5dcd92Hue: Blue

#5d60cd color

#5d60cd Hue: Blue

#cd5d98 color

#cd5d98 Hue: Violet

CSS Gradient

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