/* CSS */
.color-1 {
color: #492E4D;
}
.color-2 {
color: #5C3A6E;
}
.color-3 {
color: #7C5C8A;
}
.color-4 {
color: #A76C9A;
}
.color-5 {
color: #D18FAC;
}
/* CSS Variables */
:root {
--color-1: #492E4D;
--color-2: #5C3A6E;
--color-3: #7C5C8A;
--color-4: #A76C9A;
--color-5: #D18FAC;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #492E4D, #5C3A6E, #7C5C8A, #A76C9A, #D18FAC);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #492E4D, #5C3A6E, #7C5C8A, #A76C9A, #D18FAC);
}
Deep Purple Relaxation color palette created on .