🌈

Gradient Generator

Create beautiful CSS gradients and copy the code instantly.

Input
CSS Output

📖 What is Gradient Generator?

This CSS Gradient Generator lets you create beautiful linear, radial and conic gradients with a visual color picker and live preview. It generates the complete CSS code including vendor prefixes, ready to paste directly into your stylesheet.

💡 Example

Input
Color 1: #00C896, Color 2: #0066FF, Angle: 135°
Output
background: linear-gradient(135deg, #00C896, #0066FF);

🛠️ Common Use Cases

  • Creating hero section backgrounds
  • Adding gradient overlays to images
  • Designing button hover states
  • Building gradient text effects
  • Creating branded UI elements

❓ Frequently Asked Questions

What are the three gradient types?
Linear: colors flow in a straight line at an angle. Radial: colors radiate outward from a center point. Conic: colors rotate around a center point like a pie chart.
How do I create a multi-stop gradient?
Add more color stops in CSS: linear-gradient(135deg, #00C896, #0066FF, #7B61FF). You can add as many stops as you like with optional percentage positions.
How do I make gradient text?
Apply: background: linear-gradient(...); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; to a text element.
🔒
Your data stays private. All processing happens entirely in your browser using JavaScript. Nothing is ever sent to our servers. You can even use this tool offline after the page loads.