/* CSS */
.color-1 {
color: #3B0E4E;
}
.color-2 {
color: #5C2B7D;
}
.color-3 {
color: #8C5DA2;
}
.color-4 {
color: #B39DCD;
}
.color-5 {
color: #D8C5E7;
}
/* CSS Variables */
:root {
--color-1: #3B0E4E;
--color-2: #5C2B7D;
--color-3: #8C5DA2;
--color-4: #B39DCD;
--color-5: #D8C5E7;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3B0E4E, #5C2B7D, #8C5DA2, #B39DCD, #D8C5E7);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3B0E4E, #5C2B7D, #8C5DA2, #B39DCD, #D8C5E7);
}
Enchanted Nightshade color palette created on .