/* CSS */
.color-1 {
color: #9B7EAE;
}
.color-2 {
color: #A66E9C;
}
.color-3 {
color: #BA5E7D;
}
.color-4 {
color: #D54D59;
}
.color-5 {
color: #E8A559;
}
/* CSS Variables */
:root {
--color-1: #9B7EAE;
--color-2: #A66E9C;
--color-3: #BA5E7D;
--color-4: #D54D59;
--color-5: #E8A559;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #9B7EAE, #A66E9C, #BA5E7D, #D54D59, #E8A559);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #9B7EAE, #A66E9C, #BA5E7D, #D54D59, #E8A559);
}Neutral Purple Autumn color palette created on .