Looking to customize the color of my checkboxes, I followed the instructions provided in the documentation and successfully changed the background color with this code snippet:
.custom-control-input:checked ~ .custom-control-indicator {
background-color: #ffa500;
}
However, when clicking on the checkbox, a blue border appears along with some padding that I'd like to change as well. Despite doing some research, I haven't been able to figure out how to modify the color of that border. Can anyone assist me? To better illustrate the issue, I created a fiddle.
If you have any insights on changing that border color, please let me know!
Appreciate the help in advance!