heronsilva/firefox-theme-vscode

Light Theme: Text color of the selected terminal tab is too light to be clear.

Closed this issue · 1 comments

Hi, love this theme, and thanks for the awesome work!

Here is my trouble:

image

As you can see, the text color in the selected terminal tab is too light and hard to clearly see.
It would be better if the color is the same as those on the drop-down menu.

Hey @RainmanVi!
I had the same issue. A quick workaround is to go to the settings.json and add

"workbench.colorCustomizations": {
    "dropdown.foreground": "#505253"
  }

to it. It'll change the color of the text in all "active" drop-down selectors. Preview attached
Screen Shot 2021-08-08 at 08 07 35

P.S. VScode could do better with a more semantic namespace other than 'foreground' - took some digging to figure this one out.