Gold Foil
Metallic & Holographic · Static · pure CSS
Classic gold foil — a warm vertical metallic gradient with bright specular bands and a grounding shadow. Luxe lettering for logos and titles.
How it works
Gold Foil is a static metallic & holographic text effect rendered entirely in CSS. It works on a single element — just add the .text-effect class, with no extra HTML.
Controls
Gold Foil exposes 2 dedicated controls — Tint and Shine — 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
/* Gold Foil — made with TEXT-FX · https://text-fx.app
* 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: 8px;
text-transform: none;
}
.text-effect {
background: linear-gradient(180deg,
hsl(49 52% 88%) 0%,
hsl(43 54% 64%) 26%,
hsl(39 55% 38%) 50%,
hsl(43 54% 58%) 64%,
hsl(51 52% 88%) 80%,
hsl(43 53% 50%) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
filter: drop-shadow(0 1px 0 hsl(37 60% 28% / 0.7)) drop-shadow(0 0 4px hsl(43 52% 60% / 0.35));
}
Pure CSS — just add the .text-effect class to any element.
- Category
- Metallic & Holographic
- Type
- Static
- Browser support
- background-clip:text (all modern, -webkit- prefixed)
- Capabilities
- pure