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

Shiny Green Glow

Color codes used in shiny green glow gradient: #4cae4f, #80c684, #c7e5c8

Emerald Shine

Color codes used in emerald shine gradient: #4cae4f, #7cb342, #a4d46e

Green Brushed Metal

Color codes used in green brushed metal gradient: #6b8f24, #546a2f, #3c5030

Orange Violet Lantern

Color codes used in orange violet lantern gradient: #ffa600, #8a2ce2, #ffa07a

Purple Universe

Color codes used in purple universe gradient: #690dab, #9f1fef, #dda1dd

White Pink Breeze

Color codes used in white pink breeze gradient: #ffffff, #ffe5f0, #ffb8c2

Golden Elegance

Color codes used in golden elegance gradient: #ffd900, #ffc105, #ffb300

School Bus Brightness

Color codes used in school bus brightness gradient: #ffdd00, #ffc105, #ffb300
Explore more gradients