/* CSS */
.color-1 {
color: #282C34;
}
.color-2 {
color: #50555E;
}
.color-3 {
color: #808D8E;
}
.color-4 {
color: #B3B3B3;
}
.color-5 {
color: #E0E0E0;
}
/* CSS Variables */
:root {
--color-1: #282C34;
--color-2: #50555E;
--color-3: #808D8E;
--color-4: #B3B3B3;
--color-5: #E0E0E0;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #282C34, #50555E, #808D8E, #B3B3B3, #E0E0E0);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #282C34, #50555E, #808D8E, #B3B3B3, #E0E0E0);
}
Shadowed Silhouette color palette created on .