Introducing Magic UI Pro - 50+ blocks and templates to build beautiful landing pages in minutes.


Docs
Animated Gradient Text

Animated Gradient Text

An animated gradient background which transitions between colors for text.

🎉
Introducing Magic UI

Installation

Run the following command:

npx magicui-cli add animated-gradient-text

Update tailwind.config.js

Add the following animations to your tailwind.config.js file:

tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
  theme: {
    extend: {
      animation: {
        gradient: "gradient 8s linear infinite",
      },
      keyframes: {
        gradient: {
          to: {
            backgroundPosition: "var(--bg-size) 0",
          },
        },
      },
    },
  },
};

Props

PropTypeDescriptionDefault
childrenThe children passed into the component
classNamestringThe class name to be applied.