Skip to main content Skip to docs navigation

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

4 color gradient. Violet ,Grey,Green & Blue Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #bf80bc, #bfa280, #80bf83 and #809cbf. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#bf80bc color

#bf80bc Hue: Violet

#bfa280 color

#bfa280Hue: Grey

#80bf83 color

#80bf83 Hue: Green

#809cbf color

#809cbf Hue: Blue

CSS Gradient

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