/* CSS */
.color-1 {
color: #D9D9D9;
}
.color-2 {
color: #B3B3B3;
}
.color-3 {
color: #7A7A7A;
}
.color-4 {
color: #4D4D4D;
}
.color-5 {
color: #1A1A1A;
}
/* CSS Variables */
:root {
--color-1: #D9D9D9;
--color-2: #B3B3B3;
--color-3: #7A7A7A;
--color-4: #4D4D4D;
--color-5: #1A1A1A;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #D9D9D9, #B3B3B3, #7A7A7A, #4D4D4D, #1A1A1A);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #D9D9D9, #B3B3B3, #7A7A7A, #4D4D4D, #1A1A1A);
}
Stormy Elegance color palette created on .