CSS Gradient Generator
Create linear, radial, and conic gradients. Copy CSS or Tailwind, download as PNG.
CSS Gradient Tips
Use 3+ color stops
Two-color gradients look flat. Add a mid-tone stop to create richer, more natural transitions.
Try the 60° sweet spot
Diagonal gradients at 45–135° feel dynamic and energetic. Perfect for hero backgrounds.
Low opacity for subtlety
Use the Opacity slider to create translucent gradients that overlay content without overwhelming it.
Radial for spotlight effects
Radial gradients work great as subtle highlights on cards or buttons — adjust position with X/Y sliders.
Conic for charts & dials
Conic gradients create pie-chart-like sweeps. Adjust the angle to control where the sweep starts.
Tailwind arbitrary values
Tailwind's from-[#hex] syntax lets you use any hex color — no config needed in Tailwind v3+.
Frequently Asked Questions
.hero { background: linear-gradient(135deg, #006fd4, #00c7be); } You can apply it to any element as a background.bg-gradient-to-br from-[#006fd4] to-[#00c7be]). This works with Tailwind v3+ without any extra configuration. For 3-stop gradients, a via-[#hex] class is added.