/* CSS */
.color-1 {
color: #FDE5B4;
}
.color-2 {
color: #FEE9C8;
}
.color-3 {
color: #FEF6DC;
}
.color-4 {
color: #D6F3FA;
}
.color-5 {
color: #C1E9FB;
}
/* CSS Variables */
:root {
--color-1: #FDE5B4;
--color-2: #FEE9C8;
--color-3: #FEF6DC;
--color-4: #D6F3FA;
--color-5: #C1E9FB;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FDE5B4, #FEE9C8, #FEF6DC, #D6F3FA, #C1E9FB);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FDE5B4, #FEE9C8, #FEF6DC, #D6F3FA, #C1E9FB);
}Dandy's World color palette created on .