/* CSS */
.color-1 {
color: #F2E2B5;
}
.color-2 {
color: #E0B8C4;
}
.color-3 {
color: #B3C8E0;
}
.color-4 {
color: #89B8D1;
}
.color-5 {
color: #498D9C;
}
/* CSS Variables */
:root {
--color-1: #F2E2B5;
--color-2: #E0B8C4;
--color-3: #B3C8E0;
--color-4: #89B8D1;
--color-5: #498D9C;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F2E2B5, #E0B8C4, #B3C8E0, #89B8D1, #498D9C);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F2E2B5, #E0B8C4, #B3C8E0, #89B8D1, #498D9C);
}
Misty Reverie color palette created on .