I'm struggling with changing the colors of checkbox values based on their status - when checked, I want the text to display in green, and when unchecked, I want it to be red. Below is a sample input type, but I can't figure out how to style the true-value and false-value. If anyone has suggestions, please help! Thanks! Here's the complete code for reference.
<label>Other Information:</label>
<textarea v-model="student.otherInformation"></textarea> <br /><br />
<input type="checkbox" v-model="student.agree" true-value="I want to receive promotions"
false-value="I Don't want to receive promotions">
<span>Agree receive our promotions.</span><br><br>
<button type="submit" class="button" >Add a new student</button>
</form>