I have a feature in my app that allows users to switch between light and dark modes. Currently, I am using Bootstrap 5 form-control inputs and want to customize their background color based on the mode selected.
Which CSS classes do I need to target in order to achieve this effect?
While I have successfully changed the background colors of the inputs, I am encountering an issue where the color reverts back to white when the control is active.
.form-control{
background-color: rgb(45, 52, 61);
}