Glow Outline
Outline & Stroke · Animated · pure CSS
Hollow letters with a bright colored stroke lit by a drop-shadow halo, plus an optional broken-sign flicker. A neon tube outline.
How it works
Glow Outline is an animated outline & stroke text effect rendered entirely in CSS. It works on a single element — just add the .text-effect class, with no extra HTML.
Controls
Glow Outline exposes 4 dedicated controls — Hue, Stroke, Glow and Flicker — 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
/* Glow Outline — 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).
*/
.text-effect {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
letter-spacing: 0px;
text-transform: none;
}
.text-effect {
color: transparent;
-webkit-text-stroke: 3px hsl(103 95% 62%);
filter: drop-shadow(0 0 14px hsl(103 60% 60% / 0.95));
}
Pure CSS — just add the .text-effect class to any element.
- Category
- Outline & Stroke
- Type
- Animated
- Browser support
- -webkit-text-stroke + drop-shadow halo (transparent fill)
- Capabilities
- pure