/* CSS */
.color-1 {
color: #D4D4D4;
}
.color-2 {
color: #A8A8A8;
}
.color-3 {
color: #808080;
}
.color-4 {
color: #696969;
}
.color-5 {
color: #305050;
}
/* CSS Variables */
:root {
--color-1: #D4D4D4;
--color-2: #A8A8A8;
--color-3: #808080;
--color-4: #696969;
--color-5: #305050;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #D4D4D4, #A8A8A8, #808080, #696969, #305050);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #D4D4D4, #A8A8A8, #808080, #696969, #305050);
}
Grey Shades color palette created on .