Developer Quick Tools

CSS Gradient Generator

Create stunning linear and radial gradients with multiple color stops. Export CSS instantly.

0° (Right)90° (Down)180° (Left)270° (Up)
Stop 1
Stop 2
.gradient {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}
linear-gradient(90deg, #667eea 0%, #764ba2 100%)

Linear: Creates a gradient along a straight line at the specified angle

Radial: Creates a gradient radiating from the center outward

Color Stops: Define where each color appears in the gradient (0-100%)

Angle: 0° = right, 90° = down, 180° = left, 270° = up