/* CSS */
.color-1 {
color: #8E3B91;
}
.color-2 {
color: #E6A2B3;
}
.color-3 {
color: #F6E1B6;
}
.color-4 {
color: #5B8B6D;
}
.color-5 {
color: #D6C93D;
}
/* CSS Variables */
:root {
--color-1: #8E3B91;
--color-2: #E6A2B3;
--color-3: #F6E1B6;
--color-4: #5B8B6D;
--color-5: #D6C93D;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #8E3B91, #E6A2B3, #F6E1B6, #5B8B6D, #D6C93D);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #8E3B91, #E6A2B3, #F6E1B6, #5B8B6D, #D6C93D);
}Jester's Whimsy color palette created on .