/* CSS */
.color-1 {
color: #4B3D61;
}
.color-2 {
color: #705B8B;
}
.color-3 {
color: #8A8C99;
}
.color-4 {
color: #B5B4C0;
}
.color-5 {
color: #D7D6E6;
}
/* CSS Variables */
:root {
--color-1: #4B3D61;
--color-2: #705B8B;
--color-3: #8A8C99;
--color-4: #B5B4C0;
--color-5: #D7D6E6;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #4B3D61, #705B8B, #8A8C99, #B5B4C0, #D7D6E6);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #4B3D61, #705B8B, #8A8C99, #B5B4C0, #D7D6E6);
}
Midnight Bloom color palette created on .