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

4 color gradient. Blue ,Violet,Yellow & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #cddaec, #eccde9, #ecdfcd and #cdecd0. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#cddaec color

#cddaec Hue: Blue

#eccde9 color

#eccde9Hue: Violet

#ecdfcd color

#ecdfcd Hue: Yellow

#cdecd0 color

#cdecd0 Hue: Green

CSS Gradient

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