JSFiddle - React, Tailwind, and code Playground
by kpowz
HTML
<input />
<input type="checkbox" id="checkbox-1" />
<label for="checkbox-1" role='checkbox' tabindex="0">Check?</label><input />
CSS
#checkbox-1 {
display: none;
}
label {
color: red;
}
#checkbox-1:checked + label {
color: blue;
}