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

4 color gradient. Red ,Yellow,Green & Blue Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #b672a2, #b6a872, #72b686 and #7280b6. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#b672a2 color

#b672a2 Hue: Red

#b6a872 color

#b6a872Hue: Yellow

#72b686 color

#72b686 Hue: Green

#7280b6 color

#7280b6 Hue: Blue

CSS Gradient

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