JSFiddle - React, Tailwind, and code Playground
by igalst
HTML
<div class="red white-text">
foo
</div>
<div class="other white-text">
bar
</div>
<span class="red">
baz
</span>
CSS
.red {
background: red;
}
.white-text {
color: white;
}
.other {
background: #128BC9;
}