JSFiddle - React, Tailwind, and code Playground
by Nick Iaconis
HTML
<span class="blurred">Oh look, you can read me now.</span>
CSS
.blurred {
color: transparent;
text-shadow: 0 0 12px black;
transition: color .5s, text-shadow .5s;
cursor: default;
}
.blurred:hover {
color: black;
text-shadow: none;
}