/* CSS */
.color-1 {
  color: #80D3E0;
}
.color-2 {
  color: #F9A4A4;
}
.color-3 {
  color: #F1E25B;
}
.color-4 {
  color: #FF6E61;
}
.color-5 {
  color: #6A4C94;
}
/* CSS Variables */
:root {
  --color-1: #80D3E0;
  --color-2: #F9A4A4;
  --color-3: #F1E25B;
  --color-4: #FF6E61;
  --color-5: #6A4C94;
}/* Linear Gradient */
.linear-gradient {
 background: linear-gradient(0.25turn, #80D3E0, #F9A4A4, #F1E25B, #FF6E61, #6A4C94);
 }/* Radial Gradient */
.radial-gradient {
 background: radial-gradient(circle, #80D3E0, #F9A4A4, #F1E25B, #FF6E61, #6A4C94);
 }Shades Of Blue And Pink color palette created on .