Conic Spin
Gradient Fill · Animated · pure CSS
A conic gradient clipped to the letters that rotates forever using an animated @property angle. A modern, hypnotic color wheel through your text.
How it works
Conic Spin is an animated gradient fill text effect rendered entirely in CSS. It animates a registered CSS @property, which keeps the motion smooth and GPU-friendly.
Controls
Conic Spin exposes 2 dedicated controls — Hue and Speed — on top of the shared type controls (font, weight, letter-spacing and case). Open it in the generator to tune every value live, then copy the updated CSS.
CSS
/* Conic Spin — made with TEXT-FX · https://text-fx.app
* HTML: just put the class on any element.
* Font: 'Space Grotesk', sans-serif (load from Google Fonts).
*/
@property --text-effect-angle {
syntax: "<angle>";
inherits: false;
initial-value: 0deg;
}
.text-effect {
font-family: 'Space Grotesk', sans-serif;
font-weight: 400;
letter-spacing: -1px;
text-transform: none;
}
.text-effect {
--text-effect-angle: 0deg;
background: conic-gradient(from var(--text-effect-angle), hsl(214 55% 60%), hsl(234 55% 58%), hsl(254 55% 62%), hsl(194 55% 58%), hsl(174 55% 60%), hsl(214 55% 60%));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
filter: drop-shadow(0 0 6px hsl(214 55% 55% / 0.22));
animation: text-effect-spin 16.7s linear infinite;
}
@keyframes text-effect-spin {
to { --text-effect-angle: 360deg; }
}
Pure CSS — just add the .text-effect class to any element.
- Category
- Gradient Fill
- Type
- Animated
- Browser support
- background-clip:text + animated @property <angle>
- Capabilities
- property