/* CSS */
.color-1 {
color: #A85F2E;
}
.color-2 {
color: #D78A3C;
}
.color-3 {
color: #E3BA4A;
}
.color-4 {
color: #D3C5A7;
}
.color-5 {
color: #684E4A;
}
/* CSS Variables */
:root {
--color-1: #A85F2E;
--color-2: #D78A3C;
--color-3: #E3BA4A;
--color-4: #D3C5A7;
--color-5: #684E4A;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #A85F2E, #D78A3C, #E3BA4A, #D3C5A7, #684E4A);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #A85F2E, #D78A3C, #E3BA4A, #D3C5A7, #684E4A);
}
Autumn Orange color palette created on .