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, #50C878); 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), #50C878); 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

Illusion Dream

Color codes used in illusion dream gradient: #6b10cb, #2775fc, #11c1e8

Sunset Fade

Color codes used in sunset fade gradient: #ff8000, #a83200, #000000

Hot Pink Sunset

Color codes used in hot pink sunset gradient: #ff6bb5, #ff85c2, #ffa3cd

Vibrant Spark

Color codes used in vibrant spark gradient: #ff8052, #ffd900, #ff6bb5

Sunrise Glow

Color codes used in sunrise glow gradient: #ffa600, #ffd900, #ffff66

Skyline Serenity

Color codes used in skyline serenity gradient: #156184, #59b3e3, #73787d

Deep Sea Breeze

Color codes used in deep sea breeze gradient: #59b3e3, #3a7a98, #156184

Nebula Indigo

Color codes used in nebula indigo gradient: #4a0080, #690dab, #8a2ce2
Explore more gradients