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

Holiday Sunshine

Color codes used in holiday sunshine gradient: #ffd900, #ff6347, #ffa07a

Festive Christmas Glow

Color codes used in festive christmas glow gradient: #a72020, #d15400, #f1c40e

Casper Glow

Color codes used in casper glow gradient: #e0f7fa, #b1eaf2, #80deea

Sky Dawn

Color codes used in sky dawn gradient: #71a7d0, #a9c3d1, #d0d7d0

Azure Sky

Color codes used in azure sky gradient: #7479d2, #91a1e8, #a8b7ff

Sky Breeze

Color codes used in sky breeze gradient: #71a7d0, #a9c8d1, #d0e0f0

Sunset Glow

Color codes used in sunset glow gradient: #fe6e39, #f9a148, #f0c851

Retro Console Glow

Color codes used in retro console glow gradient: #a2c8f1, #f2a164, #7c5ede
Explore more gradients