Free CSS Gradient Animator
Create
Animated CSS Gradients
Pick your colors, set the animation speed and direction, preview it live, then copy the ready-to-use CSS keyframe code. No account, no install — runs 100% in your browser.
🎨
Visual Color Editor
Add up to 5 color stops with native color pickers. Drag to reorder. Instant live preview as you change anything.
⚡
Smooth Keyframe Animation
Control animation duration, direction, and gradient type (linear or radial). The gradient shifts through your colors on a seamless loop.
📋
Copy-Ready CSS Code
Outputs a complete CSS snippet with @keyframes, background-size, and animation shorthand — paste it directly into your project.
FastSlow
#6366f1
#a855f7
#ec4899
CSS Output
.animated-gradient {
background: linear-gradient(to right, #6366f1, #a855f7, #ec4899);
background-size: 400% 400%;
animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}Frequently Asked Questions
Everything you need to know about CSS Gradient Animator.