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

3 color gradient. Red ,Green & Blue Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #ff1bcc,#ccff1b and #1bccff. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#ff1bcc color

#ff1bcc Hue: Red

#ccff1b color

#ccff1bHue: Green

#1bccff color

#1bccff Hue: Blue

CSS Gradient

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