/* CSS */
.color-1 {
  color: #B1C5E7;
}
.color-2 {
  color: #A69FC6;
}
.color-3 {
  color: #C8B2D2;
}
.color-4 {
  color: #E0E0A4;
}
.color-5 {
  color: #8EBF88;
}
/* CSS Variables */
:root {
  --color-1: #B1C5E7;
  --color-2: #A69FC6;
  --color-3: #C8B2D2;
  --color-4: #E0E0A4;
  --color-5: #8EBF88;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #B1C5E7, #A69FC6, #C8B2D2, #E0E0A4, #8EBF88);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #B1C5E7, #A69FC6, #C8B2D2, #E0E0A4, #8EBF88);
 }Whispering Hues color palette created on .