Tested tool guide
Tested browser tools
Checked August 16, 2026
What CSS Conic Gradient Generator does, with a checked example
Conic gradients paint color around a center point the way a clock hand sweeps, which makes them the CSS-native way to draw pie-chart slices, dials, and sunbursts. This tool shows that sweep live on a preview circle as you add color stops, set their angle positions, adjust the start angle and center, and toggle the repeating variant, then returns a ready-to-paste background declaration. The usual surprise: single-position stops blend smoothly into the next color, so the result is a color wheel, not crisp pie slices, until you give each color two positions.
Worked example
A concrete input and expected output from the current implementation.
Input
Stops: #ef4444 at 0-25%, #f97316 at 25-50%, #22c55e at 50-75%, #3b82f6 at 75-100% (four equal slices)
->
Expected output
background: conic-gradient(#ef4444 0 25%, #f97316 25% 50%, #22c55e 50% 75%, #3b82f6 75% 100%);
Each color is pinned between two positions, so the edges are hard. Four slices of 25% of the circle, or 90 degrees each, start at 12 o'clock and sweep clockwise: red, orange, green, blue.