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

4 color gradient. Red ,Blue,Blue & Brown Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #ef588b, #58efbc, #58d6ef and #ef7158. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#ef588b color

#ef588b Hue: Red

#58efbc color

#58efbcHue: Blue

#58d6ef color

#58d6ef Hue: Blue

#ef7158 color

#ef7158 Hue: Brown

CSS Gradient

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