Animated Gradient Generator

Create beautiful animated gradients. Pick your colors, preview in real UI components, and copy the CSS — all in one place.

Gradient Settings

Gradient colors

Linear gradient direction

8s
Fast (1s)Slow (15s)

Animated Gradient Preview

Animated Gradient Background

This gradient animates smoothly across the background. The animation shifts the gradient position continuously for a dynamic effect.

Export Animated Gradient CSS

.animated-gradient { background: linear-gradient(90deg, #ffb3ba); background-size: 200% 200%; animation: gradient-shift 8s ease infinite; } @keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

Animated gradient border

Card with Animated Gradient Border

This card demonstrates an animated gradient border effect using a ::after pseudo-element. The border smoothly transitions through the gradient colors.

.animated-gradient-border { --border-width: 3px; --gradient-angle: 90deg; --animation-duration: 8s; background: white; position: relative; border-radius: 0.5rem; } .animated-gradient-border:after { content: ''; position: absolute; top: calc(-1 * var(--border-width)); left: calc(-1 * var(--border-width)); height: calc(100% + var(--border-width) * 2); width: calc(100% + var(--border-width) * 2); background-image: linear-gradient( var(--gradient-angle), #ffb3ba); background-size: 200% 200%; border-radius: calc(0.5rem + var(--border-width)); z-index: -1; animation: gradient-shift var(--animation-duration) ease infinite; } @keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

Not quite the right gradient? Discover more

Mulberry Dream

Color codes used in mulberry dream gradient: #7a3e7e, #a54a8a, #d289ac

Deep Blue Serenity

Color codes used in deep blue serenity gradient: #0d2b54, #1b4d8d, #4b91e2

Pastel Dream

Color codes used in pastel dream gradient: #ffb3ba, #ffdac2, #c2e1ff

Soft Blossom

Color codes used in soft blossom gradient: #fee7fa, #f7c5e5, #f9a9d4

Fresh Orchard

Color codes used in fresh orchard gradient: #a7e061, #57ac2f, #2f7f33

School Bus Brightness

Color codes used in school bus brightness gradient: #ffd500, #ffc300, #ffb300

Coral Sunset

Color codes used in coral sunset gradient: #ff8052, #ff6e61, #ff4d4d

Golden Memories

Color codes used in golden memories gradient: #ffd900, #ffa07a, #f0e78e
Explore more gradients