/* CSS */
.color-1 {
  color: #E3B05F;
}
.color-2 {
  color: #D1A05C;
}
.color-3 {
  color: #B78D5C;
}
.color-4 {
  color: #8E7B5D;
}
.color-5 {
  color: #6A5B4D;
}
/* CSS Variables */
:root {
  --color-1: #E3B05F;
  --color-2: #D1A05C;
  --color-3: #B78D5C;
  --color-4: #8E7B5D;
  --color-5: #6A5B4D;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #E3B05F, #D1A05C, #B78D5C, #8E7B5D, #6A5B4D);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #E3B05F, #D1A05C, #B78D5C, #8E7B5D, #6A5B4D);
 }Golden Embers color palette created on .