Skip to main content Skip to docs navigation

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

4 color gradient. Blue ,Brown,Green & Blue Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #ac62ee, #ee6662, #a4ee62 and #62eaee. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#ac62ee color

#ac62ee Hue: Blue

#ee6662 color

#ee6662Hue: Brown

#a4ee62 color

#a4ee62 Hue: Green

#62eaee color

#62eaee Hue: Blue

CSS Gradient

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