Shades Of Yellow Color Palette CSS
/* CSS */
.color-1 {
color: #F9D55D;
}
.color-2 {
color: #F0A800;
}
.color-3 {
color: #EBA000;
}
.color-4 {
color: #D18100;
}
.color-5 {
color: #C76D00;
}
/* CSS Variables */
:root {
--color-1: #F9D55D;
--color-2: #F0A800;
--color-3: #EBA000;
--color-4: #D18100;
--color-5: #C76D00;
}
Shades Of Yellow Gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F9D55D, #F0A800, #EBA000, #D18100, #C76D00);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F9D55D, #F0A800, #EBA000, #D18100, #C76D00);
}
Shades Of Yellow color palette created on .
0 views