/* CSS */
.color-1 {
color: #2E2A6F;
}
.color-2 {
color: #5B4F8C;
}
.color-3 {
color: #A05A8C;
}
.color-4 {
color: #D7917F;
}
.color-5 {
color: #EFB66C;
}
/* CSS Variables */
:root {
--color-1: #2E2A6F;
--color-2: #5B4F8C;
--color-3: #A05A8C;
--color-4: #D7917F;
--color-5: #EFB66C;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #2E2A6F, #5B4F8C, #A05A8C, #D7917F, #EFB66C);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #2E2A6F, #5B4F8C, #A05A8C, #D7917F, #EFB66C);
}
Shades Of Purple color palette created on .