/* CSS */
.color-1 {
color: #FAEBD6;
}
.color-2 {
color: #EFD5C3;
}
.color-3 {
color: #DEBDAF;
}
.color-4 {
color: #D0A9AD;
}
.color-5 {
color: #B3849D;
}
/* CSS Variables */
:root {
--color-1: #FAEBD6;
--color-2: #EFD5C3;
--color-3: #DEBDAF;
--color-4: #D0A9AD;
--color-5: #B3849D;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FAEBD6, #EFD5C3, #DEBDAF, #D0A9AD, #B3849D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FAEBD6, #EFD5C3, #DEBDAF, #D0A9AD, #B3849D);
}
Minimalist Aesthetic color palette created on .