This palette reminds me of a sunny day in the Hundred Acre Wood filled with sweet honey and vibrant adventures
/* CSS */
.color-1 {
color: #F0C040;
}
.color-2 {
color: #D9A300;
}
.color-3 {
color: #FFCC00;
}
.color-4 {
color: #E5B000;
}
.color-5 {
color: #B56500;
}
/* CSS Variables */
:root {
--color-1: #F0C040;
--color-2: #D9A300;
--color-3: #FFCC00;
--color-4: #E5B000;
--color-5: #B56500;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F0C040, #D9A300, #FFCC00, #E5B000, #B56500);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F0C040, #D9A300, #FFCC00, #E5B000, #B56500);
}Honey Tree Delight color palette created on .