CSS - Gradient on Text Layer
Applying a gradient to a text fill is quite different from simply giving a color to a text. Yet hooray CSS, it is much more simple than other platforms (flutter, android, ...)
How to
h1 {
font-size: 72px;
background: -webkit-linear-gradient(#eee, #333);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}