/* CSS */
.color-1 {
color: #9D8FC1;
}
.color-2 {
color: #6B78B8;
}
.color-3 {
color: #4465A2;
}
.color-4 {
color: #30507E;
}
.color-5 {
color: #1D2C53;
}
/* CSS Variables */
:root {
--color-1: #9D8FC1;
--color-2: #6B78B8;
--color-3: #4465A2;
--color-4: #30507E;
--color-5: #1D2C53;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #9D8FC1, #6B78B8, #4465A2, #30507E, #1D2C53);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #9D8FC1, #6B78B8, #4465A2, #30507E, #1D2C53);
}
Moon color palette created on .