CSS Gradient Generator
90°
Free Online CSS Gradient Generator
Create beautiful CSS gradients visually with this interactive tool. Supports linear, radial, and conic gradients with unlimited color stops. Copy the generated CSS directly into your project.
Gradient Types
- Linear — Colors transition in a straight line at a specified angle.
- Radial — Colors radiate outward from a center point as a circle or ellipse.
- Conic — Colors rotate around a center point like a pie chart.
CSS Gradient Syntax
CSS gradients are used as background or background-image values:
background: linear-gradient(90deg, #2563eb 0%, #ec4899 100%);
Frequently Asked Questions
Can I use gradients on text?
Yes, with CSS: set background-clip: text and -webkit-text-fill-color: transparent on the text element.
Are CSS gradients supported in all browsers?
Linear and radial gradients have excellent support. Conic gradients are supported in all modern browsers but not in IE11.