Getting Started
Blocks
Components
Device Mocks
Special Effects
Animations
Text Animations
Buttons
🎉
Introducing Magic UI
Introducing Magic UI
import { cn } from "@/lib/utils";
import { AnimatedGradientText } from "@/registry/magicui/animated-gradient-text";
import { ChevronRight } from "lucide-react";
export function AnimatedGradientTextDemo() {
return (
<div className="group relative mx-auto flex items-center justify-center rounded-full px-4 py-1.5 shadow-[inset_0_-8px_10px_#8fdfff1f] transition-shadow duration-500 ease-out hover:shadow-[inset_0_-5px_10px_#8fdfff3f] ">
<span
className={cn(
"absolute inset-0 block h-full w-full animate-gradient rounded-[inherit] bg-gradient-to-r from-[#ffaa40]/50 via-[#9c40ff]/50 to-[#ffaa40]/50 bg-[length:300%_100%] p-[1px]",
)}
style={{
WebkitMask:
"linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0)",
WebkitMaskComposite: "destination-out",
mask: "linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0)",
maskComposite: "subtract",
WebkitClipPath: "padding-box",
}}
/>
🎉 <hr className="mx-2 h-4 w-px shrink-0 bg-neutral-500" />
<AnimatedGradientText className="text-sm font-medium">
Introducing Magic UI
</AnimatedGradientText>
<ChevronRight
className="ml-1 size-4 stroke-neutral-500 transition-transform
duration-300 ease-in-out group-hover:translate-x-0.5"
/>
</div>
);
}
Installation
pnpm dlx shadcn@latest add @magicui/animated-gradient-text
Examples
Custom Speed
Fast Gradient
import { AnimatedGradientText } from "@/registry/magicui/animated-gradient-text";
export function AnimatedGradientTextDemo() {
return (
<AnimatedGradientText
speed={2}
colorFrom="#4ade80"
colorTo="#06b6d4"
className="text-4xl font-semibold tracking-tight"
>
Fast Gradient
</AnimatedGradientText>
);
}
Usage
import { AnimatedGradientText } from "@/components/magicui/animated-gradient-text";
<AnimatedGradientText>Animated Gradient Text</AnimatedGradientText>
Props
Prop | Type | Default | Description |
---|---|---|---|
children | node | - | The children passed into the component |
className | string | - | The class name to be applied |
speed | number | 1 | The speed of the gradient animation |
colorFrom | string | "#ffaa40" | The starting color of the gradient |
colorTo | string | "#9c40ff" | The ending color of the gradient |
Limited Time Offer
Ship Faster with Magic UI ProMagic UI Pro
Stop building from scratch.
Get 8 production-ready templates and 50+ premium components that your users will love.
✓
Next.js 15 + TypeScript ready✓
Copy, paste, customize in minutes✓
Save 100+ hours of development