Filled Outline
Outline & Stroke · Static · pure CSS
A solid fill with a thick contrasting stroke via -webkit-text-stroke and paint-order. Comic-cover legibility with independent fill and stroke colors.
How it works
Filled Outline 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
Filled Outline exposes 3 dedicated controls — Fill Hue, Stroke Hue and Stroke — 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
/* Filled Outline — 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: 900;
letter-spacing: 0px;
text-transform: none;
}
.text-effect {
color: hsl(30 92% 62%);
-webkit-text-fill-color: hsl(30 92% 62%);
-webkit-text-stroke: 2.5px hsl(285 80% 22%);
paint-order: stroke fill;
}
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