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

4 color gradient. Violet ,Green,Green & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #b44896, #48b466, #48b49c and #b44860. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#b44896 color

#b44896 Hue: Violet

#48b466 color

#48b466Hue: Green

#48b49c color

#48b49c Hue: Green

#b44860 color

#b44860 Hue: Red

CSS Gradient

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