/* CSS */
.color-1 {
color: #F7E9A1;
}
.color-2 {
color: #F3C558;
}
.color-3 {
color: #E6A147;
}
.color-4 {
color: #D67F2E;
}
.color-5 {
color: #B85C3D;
}
/* CSS Variables */
:root {
--color-1: #F7E9A1;
--color-2: #F3C558;
--color-3: #E6A147;
--color-4: #D67F2E;
--color-5: #B85C3D;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F7E9A1, #F3C558, #E6A147, #D67F2E, #B85C3D);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F7E9A1, #F3C558, #E6A147, #D67F2E, #B85C3D);
}Sunny Serenade color palette created on .