/* CSS */
.color-1 {
color: #EDE2A6;
}
.color-2 {
color: #F4E9CD;
}
.color-3 {
color: #F7EFDE;
}
.color-4 {
color: #F0DFD6;
}
.color-5 {
color: #E4D2C3;
}
/* CSS Variables */
:root {
--color-1: #EDE2A6;
--color-2: #F4E9CD;
--color-3: #F7EFDE;
--color-4: #F0DFD6;
--color-5: #E4D2C3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #EDE2A6, #F4E9CD, #F7EFDE, #F0DFD6, #E4D2C3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #EDE2A6, #F4E9CD, #F7EFDE, #F0DFD6, #E4D2C3);
}
Yellow Honeycomb color palette created on .