/* CSS */
.color-1 {
  color: #D0603E;
}
.color-2 {
  color: #F4B943;
}
.color-3 {
  color: #F2E4B1;
}
.color-4 {
  color: #3C8B59;
}
.color-5 {
  color: #903C6C;
}
/* CSS Variables */
:root {
  --color-1: #D0603E;
  --color-2: #F4B943;
  --color-3: #F2E4B1;
  --color-4: #3C8B59;
  --color-5: #903C6C;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #D0603E, #F4B943, #F2E4B1, #3C8B59, #903C6C);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #D0603E, #F4B943, #F2E4B1, #3C8B59, #903C6C);
 }Wild Whiskers color palette created on .