Skip to main content Skip to docs navigation

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

4 color gradient. Green ,Blue,Violet & Green Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #fde026, #2643fd, #7526fd and #aefd26. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#fde026 color

#fde026 Hue: Green

#2643fd color

#2643fdHue: Blue

#7526fd color

#7526fd Hue: Violet

#aefd26 color

#aefd26 Hue: Green

CSS Gradient

#stacked-linear-f {
    background:
        linear-gradient(217deg, rgba(253,224,38,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(38,67,253,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(117,38,253,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #fde026, #2643fd);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #fde026, #2643fd);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#fde026, #2643fd);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #fde026, #2643fd); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#fde026 10%, #2643fd 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #fde026, #2643fd);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #fde026 30%, #2643fd 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #fde026, #2643fd);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #fde026, #2643fd);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #fde026, #2643fd);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#fde026 10%, #2643fd 15%);
}
                                    
Copy
#stacked-linear {
    height: 300px;
    background:
        linear-gradient(217deg, rgba(253,224,38,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(38,67,253,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(117,38,253,0.8), rgba(0,0,0,0) 70.71%);
}
                                    
Copy
#stacked-radial {
    height: 300px;
    background:
        radial-gradient(circle at 50% 0,rgba(253,224,38,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 6.7% 75%,rgba(38,67,253,0.5),rgba(0,0,0,0) 70.71%),
        radial-gradient(circle at 93.3% 75%,rgba(117,38,253,0.5),rgba(0,0,0,0) 70.71%);
}
                                    
Copy