/* CSS */
.color-1 {
color: #3C2A4B;
}
.color-2 {
color: #5B4E6E;
}
.color-3 {
color: #8A7B89;
}
.color-4 {
color: #BBA0B6;
}
.color-5 {
color: #D8C1E2;
}
/* CSS Variables */
:root {
--color-1: #3C2A4B;
--color-2: #5B4E6E;
--color-3: #8A7B89;
--color-4: #BBA0B6;
--color-5: #D8C1E2;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3C2A4B, #5B4E6E, #8A7B89, #BBA0B6, #D8C1E2);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3C2A4B, #5B4E6E, #8A7B89, #BBA0B6, #D8C1E2);
}Twilight Enchantment color palette created on .