JSFiddle - React, Tailwind, and code Playground
HTML
<input class="chk" type="checkbox"/>
<label>JavaScript</label>
<input class="chk" type="checkbox" checked/>
<label>CSS</label>
SCSS
.chk+label{
letter-spacing:1px;
}
.chk:checked+label{
color:#F00;
}