JSFiddle - React, Tailwind, and code Playground
by dmethvin
HTML
<input type=checkbox id=checky>
<label for=checky>
Testing!
</label>
CSS
label {
color: #888;
font-weight: bold;
height: 20px;
vertical-align: middle;
-webkit-transition: color 2s ease;
-moz-transition: color 2s ease;
-o-transition: color 2s ease;
-ms-transition: color 2s ease;
transition: color 2s ease;
}
input:checked ~ label {
color: #F00;
}