AltraTools
🎨

CSS Gradient Text Generator

Create stunning gradient text effects with CSS

Gradient Text
.gradient-text {
  background: linear-gradient(90deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: 700;
}
<span className="bg-gradient-to-r from-[#667eea] to-[#764ba2] bg-clip-text text-transparent text-[48px] font-bold">
  Gradient Text
</span>

Browser Support

Gradient text is supported in all modern browsers. The -webkit-background-clipand -webkit-text-fill-color properties ensure compatibility with Chrome, Safari, Firefox, and Edge.