CSS Gradient Generator

Pick colors, set angle or radial origin, see the gradient live. Copy clean CSS for any framework — Tailwind, vanilla, or whatever you're using.

135°

CSS

How CSS gradients work

A gradient is a series of color stops along a line (linear) or radius (radial). The browser interpolates colors between adjacent stops.

linear-gradient(135deg, #14B8A6 0%, #5B5BD6 100%)
radial-gradient(circle at center, #14B8A6 0%, #5B5BD6 100%)

Angle conventions

Tips