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

Ocean Breeze

Color codes used in ocean breeze gradient: #2f9d82, #236380, #13ae73

Portage Sunrise

Color codes used in portage sunrise gradient: #ff8052, #ffd900, #ff4400

Sky Breeze

Color codes used in sky breeze gradient: #d6dcea, #a7bfe7, #7ca7e4

Sky Breeze

Color codes used in sky breeze gradient: #e5f2fa, #b2d7f0, #7ebfe7

Polar Breeze

Color codes used in polar breeze gradient: #a9d0db, #f9fafb, #cfe7f2

Spindle Sunrise

Color codes used in spindle sunrise gradient: #fbc02d, #ff6e00, #d54215

Morning Mist

Color codes used in morning mist gradient: #d6dcea, #a9c1ea, #7da6e3

Yin Yang Harmony

Color codes used in yin yang harmony gradient: #000000, #878787, #ffffff
Explore more gradients