/* CSS */
.color-1 {
  color: #FF8170;
}
.color-2 {
  color: #FFAB52;
}
.color-3 {
  color: #FFDF6B;
}
.color-4 {
  color: #A3FFDA;
}
.color-5 {
  color: #F1A3FF;
}
/* CSS Variables */
:root {
  --color-1: #FF8170;
  --color-2: #FFAB52;
  --color-3: #FFDF6B;
  --color-4: #A3FFDA;
  --color-5: #F1A3FF;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #FF8170, #FFAB52, #FFDF6B, #A3FFDA, #F1A3FF);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #FF8170, #FFAB52, #FFDF6B, #A3FFDA, #F1A3FF);
 }