Is there a way to change the color of the checkbox when it is checked?
Right now, my checkbox appears with this color: https://i.sstatic.net/mY9Jg.png
However, I am looking to change it to red.
Any suggestions on how I can achieve that?
<input
type="checkbox"
disabled={isDisabled}
defaultChecked={checked}
onChange={() => setChecked(!checked)}
/>