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

2 color gradients. Yellow & Blue Color Gradients - Gradient backgrounds with CSS & Transparent PNG. Hex #dba43f and #c7cbfc. Download Gradient Wallpaper in SVG, PNG format and CSS for your next project.

0 Likes 0 Comments | 3 Views

Gradient Color in usage:-

#dba43f color

#dba43f Hue: Yellow

#c7cbfc color

#c7cbfcHue: Blue

CSS Gradient

#ce-gradient1 {
    height: 300px;
    background-image: linear-gradient(50deg, #dba43f, #c7cbfc);
}
                            
Copy
#ce-gradient2 {
    height: 300px;
    background-image: linear-gradient(to right, #dba43f, #c7cbfc);
}
                                    
Copy
#ce-gradient3 {
    height: 300px;
    background-image: linear-gradient(to bottom right, #dba43f, #c7cbfc);
}
                                    
Copy
#ce-gradient4 {
    height: 300px;
    background-image: linear-gradient(#dba43f, #c7cbfc);
}
                                    
Copy
#ce-gradient5 {
    height: 300px;
    background-image: linear-gradient(to right, #dba43f, #c7cbfc); 
}
                                    
Copy
#ce-gradient6 {
    height: 300px;
    background-image: repeating-linear-gradient(#dba43f 10%, #c7cbfc 20%); 
}
                                    
Copy
#ce-gradient7 {
    height: 300px;
    background-image: radial-gradient( #dba43f, #c7cbfc);
}
                                    
Copy
#ce-gradient8 {
    height: 300px;
    background-image: radial-gradient( #dba43f 30%, #c7cbfc 60%);
}
                                    
Copy
#ce-gradient9 {
    height: 300px;
    background-image: radial-gradient(circle, #dba43f, #c7cbfc);
}
                                    
Copy
#ce-gradient10 {
    height: 300px;
    background-image: radial-gradient(closest-side at 60% 55%, #dba43f, #c7cbfc);
}
                                    
Copy
#ce-gradient11 {
    height: 300px;
    background-image: radial-gradient(farthest-side at 60% 55%, #dba43f, #c7cbfc);
}
                                    
Copy
#ce-gradient12 {
    height: 300px;
    background-image: repeating-radial-gradient(#dba43f 10%, #c7cbfc 15%);
}
                                    
Copy