/* CSS */
.color-1 {
color: #F6E6D5;
}
.color-2 {
color: #E6D4B7;
}
.color-3 {
color: #D4C6A1;
}
.color-4 {
color: #C3B19D;
}
.color-5 {
color: #B0A68D;
}
/* CSS Variables */
:root {
--color-1: #F6E6D5;
--color-2: #E6D4B7;
--color-3: #D4C6A1;
--color-4: #C3B19D;
--color-5: #B0A68D;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F6E6D5, #E6D4B7, #D4C6A1, #C3B19D, #B0A68D);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F6E6D5, #E6D4B7, #D4C6A1, #C3B19D, #B0A68D);
}Vanilla Dreams color palette created on .