JSFiddle - React, Tailwind, and code Playground

by Chris Ball

HTML

<div class="test">
    <div class="inner">SOME TEXT</div>
</div>

CSS

.test {
    width: 800x;
    height:220px;
    font-size: 200px;
    /* background-image: url(http://placekitten.com/800/220); */
		background-color: #333;
		background-repeat: no-repeat;
    color: white;
    position: relative;
}

.inner {
    position: relative;
    background-image: inherit;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-filter: invert(1) grayscale(1) contrast(9);
}