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

4 color gradient. Red ,Blue,Blue & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #df557f, #55dfb5, #55c4df and #df7055. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#df557f color

#df557f Hue: Red

#55dfb5 color

#55dfb5Hue: Blue

#55c4df color

#55c4df Hue: Blue

#df7055 color

#df7055 Hue: Red

CSS Gradient

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