/* CSS */
.color-1 {
color: #1D1D2F;
}
.color-2 {
color: #2C2C3F;
}
.color-3 {
color: #3B3B4E;
}
.color-4 {
color: #4B4B5D;
}
.color-5 {
color: #5D5D6F;
}
/* CSS Variables */
:root {
--color-1: #1D1D2F;
--color-2: #2C2C3F;
--color-3: #3B3B4E;
--color-4: #4B4B5D;
--color-5: #5D5D6F;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1D1D2F, #2C2C3F, #3B3B4E, #4B4B5D, #5D5D6F);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1D1D2F, #2C2C3F, #3B3B4E, #4B4B5D, #5D5D6F);
}
Dark Void Blue color palette created on .