Free Resource

Kairo Gradient Pack

60 premium CSS gradients crafted for modern SaaS products. Click any gradient to copy the ready-to-use CSS code.

60 gradients
Pure CSS
6 categories
Free for personal & commercial use
Usage — click any gradient to copy its CSS
/* Applied as background */
.element {
  background: linear-gradient(135deg, #5E6AD2 0%, #8B5CF6 100%);
}

/* Applied as text gradient */
.element {
  background: linear-gradient(135deg, #5E6AD2 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
CSS copied to clipboard