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

4 color gradient. Orange ,Green,Blue & Violet Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #efa991, #a8ef91, #91d7ef and #d891ef. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#efa991 color

#efa991 Hue: Orange

#a8ef91 color

#a8ef91Hue: Green

#91d7ef color

#91d7ef Hue: Blue

#d891ef color

#d891ef Hue: Violet Color Name: Bright Lilac

CSS Gradient

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