/* CSS */
.color-1 {
color: #1E1E2E;
}
.color-2 {
color: #3B3B4E;
}
.color-3 {
color: #5C5C70;
}
.color-4 {
color: #7B7B8E;
}
.color-5 {
color: #9D9DAF;
}
/* CSS Variables */
:root {
--color-1: #1E1E2E;
--color-2: #3B3B4E;
--color-3: #5C5C70;
--color-4: #7B7B8E;
--color-5: #9D9DAF;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1E1E2E, #3B3B4E, #5C5C70, #7B7B8E, #9D9DAF);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1E1E2E, #3B3B4E, #5C5C70, #7B7B8E, #9D9DAF);
}
Dark Blue color palette created on .