Looking for a way to customize a checkbox in Bootstrap 4? I've been struggling to change the background color with no success. Here is the code I'm working with:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input">
<span class="custom-control-indicator"></span>
<span class="custom-control-description">Check this custom checkbox</span>
</label>
I'm not sure what to target here to change the background color. Can someone provide some guidance on how to do this?
Appreciate any help or advice you can offer. Thank you.