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, #2b2b2b); 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), #2b2b2b); 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

Fun Green

Color codes used in fun green gradient: #8bc34b, #aed581, #54892f

Judge Gray

Color codes used in judge gray gradient: #a8a8a8, #d4d4d4, #696969

Mine Shaft

Color codes used in mine shaft gradient: #4d3c2e, #8c704f, #c9a669

Mine Shaft Mystery

Color codes used in mine shaft mystery gradient: #3b3b3b, #7a7a7a, #b0b0b0

Midnight Serenity

Color codes used in midnight serenity gradient: #000000, #212121, #454545

Nightmare Carnival

Color codes used in nightmare carnival gradient: #4a0080, #ff4400, #ffd900

Elegant Liquid Gold

Color codes used in elegant liquid gold gradient: #8a0000, #ff6b6b, #d4af35

Sunset Serenade

Color codes used in sunset serenade gradient: #ff8b42, #ff4d4f, #f9d624
Explore more gradients