/* CSS */
.color-1 {
color: #1D202F;
}
.color-2 {
color: #4A4E68;
}
.color-3 {
color: #767C9E;
}
.color-4 {
color: #B89D4C;
}
.color-5 {
color: #D8622C;
}
/* CSS Variables */
:root {
--color-1: #1D202F;
--color-2: #4A4E68;
--color-3: #767C9E;
--color-4: #B89D4C;
--color-5: #D8622C;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1D202F, #4A4E68, #767C9E, #B89D4C, #D8622C);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1D202F, #4A4E68, #767C9E, #B89D4C, #D8622C);
}
Dark Blue Summer color palette created on .