/* CSS */
.color-1 {
color: #A86D4D;
}
.color-2 {
color: #D78E6A;
}
.color-3 {
color: #EBAA89;
}
.color-4 {
color: #C46D5A;
}
.color-5 {
color: #7D4A4A;
}
/* CSS Variables */
:root {
--color-1: #A86D4D;
--color-2: #D78E6A;
--color-3: #EBAA89;
--color-4: #C46D5A;
--color-5: #7D4A4A;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #A86D4D, #D78E6A, #EBAA89, #C46D5A, #7D4A4A);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #A86D4D, #D78E6A, #EBAA89, #C46D5A, #7D4A4A);
}
Rusty Copper color palette created on .