/* CSS */
.color-1 {
color: #5D6CC0;
}
.color-2 {
color: #7D8DCF;
}
.color-3 {
color: #98B4E6;
}
.color-4 {
color: #C1D6F0;
}
.color-5 {
color: #F0F7FF;
}
/* CSS Variables */
:root {
--color-1: #5D6CC0;
--color-2: #7D8DCF;
--color-3: #98B4E6;
--color-4: #C1D6F0;
--color-5: #F0F7FF;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #5D6CC0, #7D8DCF, #98B4E6, #C1D6F0, #F0F7FF);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #5D6CC0, #7D8DCF, #98B4E6, #C1D6F0, #F0F7FF);
}
Serene Dissonance color palette created on .