/* CSS */
.color-1 {
color: #4C2E6B;
}
.color-2 {
color: #6E4C90;
}
.color-3 {
color: #A36C99;
}
.color-4 {
color: #D8C0D8;
}
.color-5 {
color: #E4C9E9;
}
/* CSS Variables */
:root {
--color-1: #4C2E6B;
--color-2: #6E4C90;
--color-3: #A36C99;
--color-4: #D8C0D8;
--color-5: #E4C9E9;
}/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4C2E6B, #6E4C90, #A36C99, #D8C0D8, #E4C9E9);
}/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4C2E6B, #6E4C90, #A36C99, #D8C0D8, #E4C9E9);
}