CSS Gradient Generator

Design beautiful CSS3 gradients visually and export the code for your web project or Tailwind.

Color Stops

0%
100%
background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
bg-[linear-gradient(90deg,#3b82f60%,#8b5cf6100%)]

What is a CSS Gradient?

CSS gradients let you display smooth transitions between two or more specified colors. Previously, this required heavy image files, but now with CSS3, you can generate them with code, reducing load time and improving quality on retina screens.

  • Linear: Colors flow in a straight line (up, down, left, right, or diagonal).
  • Radial: Colors radiate from a central point outwards.
// Code Example background: linear-gradient(90deg, #6366f1 0%, #a855f7 100%);

Key Features

Visual Editor

Add and move color stops visually. No guessing percentages involved.

Export to Tailwind

Get the JIT arbitrary class (bg-[...]) ready to paste into your HTML.

Multi-Format

Supports HEX input natively. RGB and color names integration coming soon.