Color Cycle Glow
Neon & Glow · Animated · pure CSS
A neon tube whose entire glow rotates through the spectrum via filter:hue-rotate. The classic layered-shadow halo, endlessly color-cycling.
How it works
Color Cycle Glow is an animated neon & glow text effect rendered entirely in CSS. It works on a single element — just add the .text-effect class, with no extra HTML.
Controls
Color Cycle Glow exposes 3 dedicated controls — Start Hue, Glow 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
/* Color Cycle Glow — generated with TEXT-FX
* HTML: just put the class on any element.
* Font: 'Unbounded', sans-serif (load from Google Fonts).
*/
.text-effect {
font-family: 'Unbounded', sans-serif;
font-weight: 700;
letter-spacing: -2px;
text-transform: none;
}
.text-effect {
color: hsl(342 95% 65%);
text-shadow: 0 0 8.8px #fff, 0 0 22px hsl(342 95% 65%), 0 0 44px hsl(342 95% 65%);
animation: text-effect-cycle 8.7s linear infinite;
}
@keyframes text-effect-cycle {
from { filter: hue-rotate(0deg); }
to { filter: hue-rotate(360deg); }
}
Pure CSS — just add the .text-effect class to any element.
- Category
- Neon & Glow
- Type
- Animated
- Browser support
- Layered text-shadow glow + animated filter:hue-rotate
- Capabilities
- pure