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, #1d1d2f); 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), #1d1d2f); 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

Biloba Blossom

Color codes used in biloba blossom gradient: #a9d6bb, #f4c4a9, #d49ba2

Blizzard Blue Breeze

Color codes used in blizzard blue breeze gradient: #afeeee, #add8e6, #8acff0

Scooter Breeze

Color codes used in scooter breeze gradient: #50c2f7, #80d3fa, #b1eaf2

Bright Turquoise Bliss

Color codes used in bright turquoise bliss gradient: #30d5c7, #3dc9db, #5cc8e0

Madang Serenity

Color codes used in madang serenity gradient: #4dacfe, #00f2ff, #00c3ff

Blue Ribbon

Color codes used in blue ribbon gradient: #398cdb, #5ab1e7, #a8d8f0

Hit Pink Explosion

Color codes used in hit pink explosion gradient: #ff6bb5, #ff1492, #ff4400

Coral Sunset

Color codes used in coral sunset gradient: #ff6e61, #ff8f66, #ffac80
Explore more gradients