/* CSS */
.color-1 {
  color: #6D2C3E;
}
.color-2 {
  color: #9B4B57;
}
.color-3 {
  color: #C37481;
}
.color-4 {
  color: #E8B5C2;
}
.color-5 {
  color: #F4D2E2;
}
/* CSS Variables */
:root {
  --color-1: #6D2C3E;
  --color-2: #9B4B57;
  --color-3: #C37481;
  --color-4: #E8B5C2;
  --color-5: #F4D2E2;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #6D2C3E, #9B4B57, #C37481, #E8B5C2, #F4D2E2);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #6D2C3E, #9B4B57, #C37481, #E8B5C2, #F4D2E2);
 }Classy Wine Shades color palette created on .