JSFiddle - React, Tailwind, and code Playground
HTML
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<text class="fuzzy" font-size="10px" x="0" y="15" fill="red">I love SVG</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<text class="crisp" font-size="10px" x="0" y="15" fill="red">I love SVG</text>
</svg>
CSS
.fuzzy {
stroke: white;
}
.crisp {
fill: black;
font-weight: bold;
}