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

Urban Shadows

Color codes used in urban shadows gradient: #000000, #545454, #bababa

Sunlit Button Glow

Color codes used in sunlit button glow gradient: #ffa07a, #ff8c00, #ffd900

Button Bloom

Color codes used in button bloom gradient: #ff7aab, #ff4d9d, #ff2e89

Silver Sand

Color codes used in silver sand gradient: #bfbfbf, #d9d9d9, #e0e0e0

Silver Chalice

Color codes used in silver chalice gradient: #b1b8b9, #d3d9da, #a7a8aa

Serene Nightfall

Color codes used in serene nightfall gradient: #3b5897, #4968ab, #5b7bdc

Splash Sky

Color codes used in splash sky gradient: #4dacfe, #00f2ff, #8bf6fe

Serene Sky

Color codes used in serene sky gradient: #8acff0, #4b91e2, #003366
Explore more gradients