/* CSS */
.color-1 {
color: #915740;
}
.color-2 {
color: #AE664C;
}
.color-3 {
color: #C98169;
}
.color-4 {
color: #E3B59C;
}
.color-5 {
color: #EDD2C4;
}
/* CSS Variables */
:root {
--color-1: #915740;
--color-2: #AE664C;
--color-3: #C98169;
--color-4: #E3B59C;
--color-5: #EDD2C4;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #915740, #AE664C, #C98169, #E3B59C, #EDD2C4);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #915740, #AE664C, #C98169, #E3B59C, #EDD2C4);
}
Soft Autumn color palette created on .