/* CSS */
.color-1 {
color: #F0D0CC;
}
.color-2 {
color: #E1B7BD;
}
.color-3 {
color: #D0A9C5;
}
.color-4 {
color: #CED7DE;
}
.color-5 {
color: #EEE1B4;
}
/* CSS Variables */
:root {
--color-1: #F0D0CC;
--color-2: #E1B7BD;
--color-3: #D0A9C5;
--color-4: #CED7DE;
--color-5: #EEE1B4;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F0D0CC, #E1B7BD, #D0A9C5, #CED7DE, #EEE1B4);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F0D0CC, #E1B7BD, #D0A9C5, #CED7DE, #EEE1B4);
}
Whimsical Scholar's Retreat color palette created on .