JSFiddle - React, Tailwind, and code Playground
HTML
<div class="loo">
<input type="checkbox" checked class="foo">
</div>
CSS
div.loo + input[type=checkbox]:checked {
background: green;
}
input[type=checkbox]:checked + input.foo {
background: blue;
}