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

2 color gradient. Blue & Red Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #afdce9 and #e9bcaf. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#afdce9 color

#afdce9 Hue: Blue

#e9bcaf color

#e9bcafHue: Red

CSS Gradient

#stacked-linear-a {
    background:
        linear-gradient(217deg, rgba(175,220,233,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(127deg, rgba(233,188,175,0.8), rgba(0,0,0,0) 70.71%),
        linear-gradient(336deg, rgba(175,220,233,0.8), rgba(0,0,0,0) 70.71%);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #afdce9, #e9bcaf);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #afdce9, #e9bcaf);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#afdce9, #e9bcaf);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #afdce9, #e9bcaf); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#afdce9 10%, #e9bcaf 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #afdce9, #e9bcaf);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #afdce9 30%, #e9bcaf 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #afdce9, #e9bcaf);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #afdce9, #e9bcaf);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #afdce9, #e9bcaf);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#afdce9 10%, #e9bcaf 15%);
}
                                    
Copy