/* CSS */
.color-1 {
  color: #F5E7D6;
}
.color-2 {
  color: #D8C8B0;
}
.color-3 {
  color: #BEA69D;
}
.color-4 {
  color: #B69D8B;
}
.color-5 {
  color: #8B7A65;
}
/* CSS Variables */
:root {
  --color-1: #F5E7D6;
  --color-2: #D8C8B0;
  --color-3: #BEA69D;
  --color-4: #B69D8B;
  --color-5: #8B7A65;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #F5E7D6, #D8C8B0, #BEA69D, #B69D8B, #8B7A65);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #F5E7D6, #D8C8B0, #BEA69D, #B69D8B, #8B7A65);
 }Shades Of Brown color palette created on .