Dark Mode Advanced Search legend

1 month ago
Posts: 15
The text for the Include/Exclude legend is virtually unreadable in dark mode. I'd include a picture, but images are disabled, and you can just go to the Advanced Search page and turn on Dark Mode.
The problem is that the text color is set to
var(--mu-text-color);
and --mu-text-color
changes when Light/Dark mode changes, but the background of the legend is fixed. And light text on a light background is not very easy to read.
One possible fix is:
[class^=genre-search-selection] {
color: var(--mu-darker-shade-40);
}
--mu-darker-shade-40
is the Light mode text color, so now it should look the same in both Light and Dark mode. I think the only other things that use genre-search-selection...
are the check boxes, which don't have text in them (and even if they did, you'd want it to be readable).
Raised by wolves

1 month ago
Posts: 2859
Hi,
You're right. Not sure how I missed that. I forced it to be --mu-darker-shade-40.