/* CSS */
.color-1 {
color: #8D6F62;
}
.color-2 {
color: #A58073;
}
.color-3 {
color: #BF9A8D;
}
.color-4 {
color: #DDC4B6;
}
.color-5 {
color: #E8D9D3;
}
/* CSS Variables */
:root {
--color-1: #8D6F62;
--color-2: #A58073;
--color-3: #BF9A8D;
--color-4: #DDC4B6;
--color-5: #E8D9D3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #8D6F62, #A58073, #BF9A8D, #DDC4B6, #E8D9D3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #8D6F62, #A58073, #BF9A8D, #DDC4B6, #E8D9D3);
}
Soft Autumn color palette created on .