/* CSS */
.color-1 {
  color: #5B3939;
}
.color-2 {
  color: #C7A84D;
}
.color-3 {
  color: #4B3C3A;
}
.color-4 {
  color: #D3C8C5;
}
.color-5 {
  color: #FFD942;
}
/* CSS Variables */
:root {
  --color-1: #5B3939;
  --color-2: #C7A84D;
  --color-3: #4B3C3A;
  --color-4: #D3C8C5;
  --color-5: #FFD942;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #5B3939, #C7A84D, #4B3C3A, #D3C8C5, #FFD942);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #5B3939, #C7A84D, #4B3C3A, #D3C8C5, #FFD942);
 }Maroon And Yellow Harmony color palette created on .