/* CSS */
.color-1 {
color: #D4CFC4;
}
.color-2 {
color: #B7A89A;
}
.color-3 {
color: #A49C8E;
}
.color-4 {
color: #8A796A;
}
.color-5 {
color: #5D4F4B;
}
/* CSS Variables */
:root {
--color-1: #D4CFC4;
--color-2: #B7A89A;
--color-3: #A49C8E;
--color-4: #8A796A;
--color-5: #5D4F4B;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #D4CFC4, #B7A89A, #A49C8E, #8A796A, #5D4F4B);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #D4CFC4, #B7A89A, #A49C8E, #8A796A, #5D4F4B);
}Brown Neutral color palette created on .