/* CSS */
.color-1 {
  color: #6D2C32;
}
.color-2 {
  color: #8C4A4F;
}
.color-3 {
  color: #9D6C7C;
}
.color-4 {
  color: #C3A2A6;
}
.color-5 {
  color: #E2B6B6;
}
/* CSS Variables */
:root {
  --color-1: #6D2C32;
  --color-2: #8C4A4F;
  --color-3: #9D6C7C;
  --color-4: #C3A2A6;
  --color-5: #E2B6B6;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #6D2C32, #8C4A4F, #9D6C7C, #C3A2A6, #E2B6B6);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #6D2C32, #8C4A4F, #9D6C7C, #C3A2A6, #E2B6B6);
 }Rich Red color palette created on .