/* CSS */
.color-1 {
color: #D4A5A1;
}
.color-2 {
color: #F1E3C6;
}
.color-3 {
color: #F6E8B1;
}
.color-4 {
color: #C2D3A6;
}
.color-5 {
color: #8E9A89;
}
/* CSS Variables */
:root {
--color-1: #D4A5A1;
--color-2: #F1E3C6;
--color-3: #F6E8B1;
--color-4: #C2D3A6;
--color-5: #8E9A89;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #D4A5A1, #F1E3C6, #F6E8B1, #C2D3A6, #8E9A89);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #D4A5A1, #F1E3C6, #F6E8B1, #C2D3A6, #8E9A89);
}
Muted Earth Tones color palette created on .