Skip to main content
Tool ReignTool Reign
DeveloperFinanceTextPDFImageAll categories
Tool ReignTool Reign

342 free online tools for developers, finance, and businesses. No signup required.

100% privateFree tools
Tool Reign - 280+ free browser tools. No signup. Your data stays private. | Product HuntTool Reign - 280+ free browser tools. No signup. Your data stays private. | Product HuntToolReign on PeerlistToolReign on Peerlist
Popular
JSON FormatterText EditorGST CalculatorEMI CalculatorWord CounterMerge PDFImage ResizerSIP CalculatorJWT Decoder
All Tools·Guides·Privacy Policy·Terms of Use·About·Contact

© 2026 ToolReign. All rights reserved.
· Made for 🌍 Everyone

HomeDeveloperCSS Gradient Generator — Linear, Radial & Conic with Live Preview
Developer

CSS Gradient Generator — Linear, Radial & Conic with Live Preview

Browser-Only

Create CSS gradients visually with multiple colour stops and live preview. Linear, radial, and conic types. Copy CSS or Tailwind classes.

Linear / Radial / ConicLive PreviewCSS & TailwindFree

Related Tools

More free utilities you might find useful

🌑
Box Shadow Generator
CSS box shadows
⬜
Border Radius Generator
Rounded corners
📐
Flexbox Generator
Flex layout builder

Frequently Asked Questions

Quick answers to common questions

What is the CSS syntax for a linear gradient?+

background: linear-gradient(direction, color-stop1, color-stop2, ...); Direction can be 'to right', 'to bottom right', or a degree like '135deg'. Example: background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); creates a diagonal purple gradient. Add more colour stops for complex gradients.

What is a conic gradient in CSS?+

A conic gradient rotates around a center point (like a pie chart or colour wheel). Syntax: background: conic-gradient(from 0deg, red, yellow, green, blue, red); Each colour occupies an equal arc by default. Supported in all modern browsers.

How do I add a gradient to text in CSS?+

Apply gradient to text: (1) background: linear-gradient(...) (2) -webkit-background-clip: text (3) -webkit-text-fill-color: transparent (4) background-clip: text.

Your data is processed entirely in your browser. Nothing is sent to any server.

Presets

Colour Stops

#667eea0%
#764ba2100%

CSS Output

background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

Tailwind

bg-[linear-gradient(135deg,_#667eea_0%,_#764ba2_100%)]