/* CSS */
.color-1 {
  color: #9D7C6C;
}
.color-2 {
  color: #C5B59B;
}
.color-3 {
  color: #D6C5A8;
}
.color-4 {
  color: #E8D0B0;
}
.color-5 {
  color: #F3E0C3;
}
/* CSS Variables */
:root {
  --color-1: #9D7C6C;
  --color-2: #C5B59B;
  --color-3: #D6C5A8;
  --color-4: #E8D0B0;
  --color-5: #F3E0C3;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #9D7C6C, #C5B59B, #D6C5A8, #E8D0B0, #F3E0C3);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #9D7C6C, #C5B59B, #D6C5A8, #E8D0B0, #F3E0C3);
 }Warm Beige color palette created on .