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, #6494ed); 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), #6494ed); 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

Jagger's Vibe

Color codes used in jagger's vibe gradient: #ff8052, #ffd900, #ff4400

Vampire Night

Color codes used in vampire night gradient: #2d0b51, #800f4d, #e6002e

Sea Breeze

Color codes used in sea breeze gradient: #00bdad, #009999, #007575

Tropical Breeze

Color codes used in tropical breeze gradient: #00ffbb, #33ccab, #009978

Dreamscape Glow

Color codes used in dreamscape glow gradient: #a8c1ff, #ffd6a3, #ff8a8a

Dreamy Night

Color codes used in dreamy night gradient: #0d1c2b, #1b273b, #415a76

Cosmic Dawn

Color codes used in cosmic dawn gradient: #4b91e2, #fde94e, #9116fe

Fruit Salad

Color codes used in fruit salad gradient: #ff8052, #ffd900, #32cd32
Explore more gradients