JSFiddle - React, Tailwind, and code Playground

HTML

<h1 data-text="airbag">airbag</h1>

CSS

h1 {
    font-size: 5em;
    background-image: -webkit-repeating-linear-gradient(60deg, #fff, #fff 2px, #c55 2px, #c55 4px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position:relative;
    text-transform: uppercase;
}
h1:after {
    background: none;
    content: attr(data-text);
    left: -.1em;
    position: absolute;
    text-shadow: 1px 1px 0px #339;
    top: -.05em;
    text-transform: uppercase;
}
body {
    background-color: #c55;
}