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

3 color gradient. Yellow ,Blue & Violet Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #dfbf1c,#1cdfbf and #bf1cdf. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

Gradient Color in usage:-

#dfbf1c color

#dfbf1c Hue: Yellow

#1cdfbf color

#1cdfbfHue: Blue

#bf1cdf color

#bf1cdf Hue: Violet

CSS Gradient

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