JSFiddle - React, Tailwind, and code Playground
HTML
<div class="stroke">Test This Out</div>
<div class="nativeStroke">Test Native Stroke</div>
CSS
body {
font-size: 40px;
}
.stroke {
color: white;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000,
4px 4px 2px rgba(128, 255, 128, 1);
}
.nativeStroke {
color: white;
-webkit-text-stroke-color: #000;
-webkit-text-stroke-width: 1px;
text-stroke-color: #d78965;
text-stroke-width: 3px;
text-shadow: 4px 4px 2px rgba(128, 255, 128, 1);
}