❤️ Support our project - Your donation helps us continue developing awesome tools!


Docs
Animated Gradient Text

Animated Gradient Text

An animated gradient background which transitions between colors for text.

🎉
Introducing Nyxb UI

Installation

npx nyxbui@latest add animated-gradient-text

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

// tailwind.config.ts
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 to the shimmer.