To fix the dropdowns showing no text in Dark mode please add the following code to the <head> section of app.blade.php in your theme files.
<style>
.select2-results__option {
padding: 6px;
user-select: none;
-webkit-user-select: none;
color: #000;
}
.form-control.form-control-solid {
background-color: #ffffff;
color: var(--bs-gray-700);
}
.dropdown.show>.form-control.form-control-solid, .form-control.form-control-solid.active, .form-control.form-control-solid.focus, .form-control.form-control-solid:active, .form-control.form-control-solid:focus {
background-color: #ffffff;
color: var(--bs-gray-700);
}
</style>
