Sticker
Outline & Stroke · Static · pure CSS
Die-cut vinyl sticker lettering: a bright solid fill wrapped in a thick contrasting border, like the white edge left behind by a sticker cutter. A hard, zero-blur offset shadow drops it onto the page for a real peel-and-stick feel.
How it works
Sticker is a static 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
Sticker exposes 4 dedicated controls — Fill Hue, Fill Saturation, Border and Shadow Offset — 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
/* Sticker — made with TEXT-FX · https://text-fx.app
* HTML: just put the class on any element.
* Font: 'Space Mono', monospace (load from Google Fonts).
*/
.text-effect {
font-family: 'Space Mono', monospace;
font-weight: 900;
letter-spacing: -1px;
text-transform: uppercase;
}
.text-effect {
color: hsl(86 9% 78%);
-webkit-text-fill-color: hsl(86 9% 78%);
-webkit-text-stroke: 9px hsl(86 14% 97%);
paint-order: stroke fill;
text-shadow: 5px 5px 0 hsl(86 18% 20%);
}
Pure CSS — just add the .text-effect class to any element.
- Category
- Outline & Stroke
- Type
- Static
- Browser support
- -webkit-text-stroke + paint-order (all modern, prefixed)
- Capabilities
- pure