/* CSS */
.color-1 {
  color: #D8C06E;
}
.color-2 {
  color: #B9A03C;
}
.color-3 {
  color: #8E7B2E;
}
.color-4 {
  color: #4D5F30;
}
.color-5 {
  color: #2B4A2E;
}
/* CSS Variables */
:root {
  --color-1: #D8C06E;
  --color-2: #B9A03C;
  --color-3: #8E7B2E;
  --color-4: #4D5F30;
  --color-5: #2B4A2E;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #D8C06E, #B9A03C, #8E7B2E, #4D5F30, #2B4A2E);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #D8C06E, #B9A03C, #8E7B2E, #4D5F30, #2B4A2E);
 }Earthy Green color palette created on .