CSS conic gradient works in Chrome 69+, Edge 79+, Firefox 83+, Safari 12.1+, Opera 56+, and Samsung Internet 10.1+. Learn the syntax, use cases, and issues.

Prince Dewani
May 6, 2026
CSS conic gradient is a CSS Images Module Level 4 function that paints color transitions rotated around a center point. It works in Chrome 69+, Edge 79+, Firefox 83+, Safari 12.1+ on macOS and 12.2+ on iOS, Opera 56+, and Samsung Internet 10.1+, while Internet Explorer does not support it.
This guide covers what CSS conic gradient is, the browsers that support it, the syntax, the difference from radial-gradient, the use cases, and the known issues.
CSS conic gradient is a CSS function defined in the W3C CSS Images Module Level 4. It paints color stops rotated clockwise around a center point of the box, starting from the top by default. Pie charts, color wheels, and angular sweeps are the typical outputs.
CSS conic gradient has wide modern browser support but did not ship in Internet Explorer or in Safari before 12.1. Every Chromium-based browser, Firefox, and Safari supports the function on desktop and mobile today.
Chrome supports CSS conic gradient by default from Chrome 69 on Windows, macOS, Linux, ChromeOS, and Android. Chrome 59 to 68 had conic-gradient disabled by default behind the experimental Web Platform features flag, and Chrome 4 to 58 did not support the function at all. The newer color interpolation method syntax with in oklch and in hsl longer hue ships from Chrome 111.
Microsoft Edge supports CSS conic gradient by default from Edge 79 on Windows, macOS, and Linux. Legacy EdgeHTML 12 to 18 never shipped the function. Chromium-based Edge inherits the Blink implementation, so every release from Edge 79 onward matches Chrome on syntax, color stops, and the from and at keywords.
Firefox supports CSS conic gradient by default from Firefox 83 on Windows, macOS, Linux, and Android. Firefox 75 to 82 had it disabled by default behind the layout.css.conic-gradient.enabled preference, and Firefox 2 to 74 did not support the function. Firefox added the in oklch and longer-hue interpolation methods from Firefox 113.
Safari supports CSS conic gradient by default from Safari 12.1 on macOS and Safari 12.2 on iOS and iPadOS. WebKit was the first engine to ship the function. Safari 3.1 to 12 did not support conic-gradient on macOS, and Safari 16.2 added the in oklch and in hsl longer hue interpolation syntax to the function.
Opera supports CSS conic gradient by default from Opera 56 on desktop. Opera 46 to 55 had it disabled by default behind the same Blink runtime flag Chrome used, and Opera 9 to 45 did not support the function. Opera Mobile picks up support from Opera Mobile 80 on Android, and Opera Mini does not support conic-gradient on any version.
Samsung Internet supports CSS conic gradient by default from Samsung Internet 10.1 on Galaxy phones and tablets. Samsung Internet 4 to 9.2 did not support the function. The browser shares its rendering engine with Chrome on Android, so every Chromium-based release inherits the same syntax, color stop handling, and interpolation behavior as the matching Chrome version.
Chrome for Android supports CSS conic gradient by default from Chrome 69, and modern Android WebView matches the system Chrome version. The legacy Android Browser 2.1 to 4.4.4 did not support conic-gradient on Gingerbread, Ice Cream Sandwich, Jelly Bean, or KitKat. Devices on KitKat or older silently skip the rule and fall back to whatever flat background the page declared first.
Internet Explorer 6 through 11 do not support CSS conic gradient. Microsoft has retired Internet Explorer, and Trident never shipped any conic-gradient implementation. Pages that need to run on IE should either fall back to a flat background or render the gradient as an SVG image and reference it through background-image.
Note: CSS conic gradient renders differently across older Safari, Firefox, and legacy Android Browser builds. Test it on real browsers and OS with TestMu AI. Try TestMu AI free!
conic-gradient takes an optional starting angle, an optional center position, an optional color interpolation method, and a comma-separated list of angular color stops. Every clause except the color stops can be omitted, and the function defaults to a 0deg sweep centered on the box.
/* Color wheel using longer-hue interpolation */
.color-wheel {
background-image: conic-gradient(
in hsl longer hue,
hsl(0 100% 50%),
hsl(360 100% 50%)
);
border-radius: 50%;
width: 200px;
height: 200px;
}
/* Three-slice pie chart with hard color stops */
.pie {
background: conic-gradient(
#ef4444 0deg 90deg,
#3b82f6 90deg 210deg,
#facc15 210deg 360deg
);
border-radius: 50%;
width: 200px;
height: 200px;
}
/* Feature query fallback for older browsers */
.banner {
background: #1f2937;
}
@supports (background: conic-gradient(red, blue)) {
.banner {
background: conic-gradient(from 45deg, #1f2937, #4f46e5, #1f2937);
}
}conic-gradient and radial-gradient are both CSS image functions that paint a multi-color background, but they sweep colors along different axes. The choice between them is driven by the visual outcome you need.
| Dimension | conic-gradient | radial-gradient |
|---|---|---|
| Color sweep direction | Rotates colors clockwise around a center point. | Transitions colors outward from a center point. |
| Visual analogy | Pie slice or clock-hand sweep. | Spotlight, vignette, or concentric ring. |
| Color stop position | Angles in deg, grad, rad, turn, or percent. | Lengths or percent along the radial axis. |
| Hard stops | Repeat the same angle on two color stops to create a slice boundary. | Repeat the same length to create a ring boundary. |
| Browser support | Chrome 69+, Edge 79+, Firefox 83+, Safari 12.1+. | Chrome 26+, Edge 12+, Firefox 16+, Safari 6.1+. |
| Best fit | Pie charts, color wheels, segmented progress rings. | Spotlights, soft vignettes, button highlights. |
conic-gradient ships in every modern browser, so design teams now use it as a first-class image source for any pattern that has a circular sweep. The most common production patterns are decorative rather than data-bearing.
conic-gradient is in every modern browser, but the way each engine rasterizes the sweep, handles interpolation methods, and falls back on older devices still trips up production builds.
In my experience, the failure that bites teams the most is the missing fallback, where a designer ships a conic-gradient hero on a marketing page, the QA pipeline tests Chrome and Firefox only, and Safari 14 users on a still-shipped iPad get a transparent banner because the @supports block did not include a flat color first. Always declare a flat background, then the conic-gradient on the next line.
All CSS conic gradient version numbers and platform notes in this guide come from these primary sources:
Did you find this page helpful?
More Related Hubs
TestMu AI forEnterprise
Get access to solutions built on Enterprise
grade security, privacy, & compliance