Dual Neon
Neon & Glow · Static · pure CSS
A neon sign with two stacked glows — a tight inner halo in your hue and a wide outer halo in a complementary color. Built entirely from layered text-shadows.
CSS
/* Dual Neon — generated with TEXT-FX
* HTML: just put the class on any element.
* Font: 'Archivo Black', sans-serif (load from Google Fonts).
*/
.text-effect {
font-family: 'Archivo Black', sans-serif;
font-weight: 700;
letter-spacing: 8px;
text-transform: uppercase;
}
.text-effect {
color: hsl(204 40% 96%);
text-shadow:
0 0 3px hsl(204 100% 62%),
0 0 8px hsl(204 100% 62%),
0 0 16px hsl(204 100% 62%),
0 0 34px hsl(334 100% 58%),
0 0 62px hsl(334 100% 58%),
0 0 92px hsl(334 100% 58%);
}
Pure CSS — just add the .text-effect class to any element.
- Category
- Neon & Glow
- Type
- Static
- Browser support
- All modern browsers
- Capabilities
- pure