Is there any way to change the color of the Dash dropdown text that the user enters? Right now it’s black on a blackish background which is hard to read.
Thanks in advance.
Is there any way to change the color of the Dash dropdown text that the user enters? Right now it’s black on a blackish background which is hard to read.
Thanks in advance.
Try to put this in a stylsheet:
.Select-input > input {
color: /*whatever color you desire*/;
}