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

Sunset Blaze

Color codes used in sunset blaze gradient: #ff8161, #feb47c, #ffcd70

Love's Embrace

Color codes used in love's embrace gradient: #ff6e61, #f9da5d, #9b58b6

Earthy Tones

Color codes used in earthy tones gradient: #8b5e3c, #aa746e, #d4bfaa

Celestial Voyage

Color codes used in celestial voyage gradient: #4dacfe, #00f2ff, #8bf6fe

Athletic Vibe

Color codes used in athletic vibe gradient: #ff6e61, #f4d35d, #2a9d90

Energetic Motion

Color codes used in energetic motion gradient: #ff8052, #ff6347, #ff4400

Turbo Spark

Color codes used in turbo spark gradient: #ff8052, #ffd900, #ff4400

Modern Tech Dark

Color codes used in modern tech dark gradient: #1a1a1a, #333333, #666666
Explore more gradients