Ice
Elemental & Nature · Static · pure CSS
Crystalline ice — a cool blue gradient fill with a frosty stroke and a cold shadow. Wintry and clean.
CSS
/* Ice — generated with TEXT-FX
* HTML: just put the class on any element.
* Font: 'Major Mono Display', monospace (load from Google Fonts).
*/
.text-effect {
font-family: 'Major Mono Display', monospace;
font-weight: 400;
letter-spacing: 8px;
text-transform: none;
}
.text-effect {
background: linear-gradient(180deg, hsl(208 60% 96%) 0%, hsl(208 80% 78%) 45%, hsl(208 85% 60%) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
-webkit-text-stroke: 1px hsl(208 40% 100% / 0.55);
filter: drop-shadow(0 0 4px hsl(208 90% 70% / 0.6)) drop-shadow(0 0 14px hsl(208 90% 70% / 0.6)) drop-shadow(0 0 28px hsl(208 95% 78% / 0.35));
}
Pure CSS — just add the .text-effect class to any element.
- Category
- Elemental & Nature
- Type
- Static
- Browser support
- background-clip:text + -webkit-text-stroke (all modern, -webkit- prefixed)
- Capabilities
- pure