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 #ca112d, #11caae, #1189ca and #ca5211. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#ca112d color

#ca112d Hue: Red

#11caae color

#11caaeHue: Blue

#1189ca color

#1189ca Hue: Blue

#ca5211 color

#ca5211 Hue: Red

CSS Gradient

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