Search code examples
bootstrap-4

How to change form-select Option Select to dark mode


How do i change my css stylesheet to make the form-select dark?

<select class="form-select">
 <option value="1" selected>1</option>
 <option value="2">2</option>
 <option value="3">3</option>
</select>

Solution

  • Add the class bg-dark to make the background dark and text-white to achieve a better contrast.

    <select class="form-select bg-dark text-white">
     <option value="1" selected>1</option>
     <option value="2">2</option>
     <option value="3">3</option>
    </select>