/* CSS */
.color-1 {
  color: #4A4A4A;
}
.color-2 {
  color: #7D7D7D;
}
.color-3 {
  color: #A3A3A3;
}
.color-4 {
  color: #C2C2C2;
}
.color-5 {
  color: #E0E0E0;
}
/* CSS Variables */
:root {
  --color-1: #4A4A4A;
  --color-2: #7D7D7D;
  --color-3: #A3A3A3;
  --color-4: #C2C2C2;
  --color-5: #E0E0E0;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #4A4A4A, #7D7D7D, #A3A3A3, #C2C2C2, #E0E0E0);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #4A4A4A, #7D7D7D, #A3A3A3, #C2C2C2, #E0E0E0);
 }Shades Of Dusk color palette created on .