/* CSS */
.color-1 {
color: #1D1D30;
}
.color-2 {
color: #3B3B4A;
}
.color-3 {
color: #5D5D69;
}
.color-4 {
color: #8A8A93;
}
.color-5 {
color: #B6B6C9;
}
/* CSS Variables */
:root {
--color-1: #1D1D30;
--color-2: #3B3B4A;
--color-3: #5D5D69;
--color-4: #8A8A93;
--color-5: #B6B6C9;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1D1D30, #3B3B4A, #5D5D69, #8A8A93, #B6B6C9);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1D1D30, #3B3B4A, #5D5D69, #8A8A93, #B6B6C9);
}
Shades Of Cold Gray color palette created on .