Non-workbench editor does not show highlighting
atkinchris opened this issue · 2 comments
atkinchris commented
The highlight colour in Monokai Dark Soda is the same colour as the background of non-workbench panels, so highlights cannot be seen. This appears to have happened when VS Code switched to using the Monaco editor for settings search, source control and more.
For reference, this is the highlighting colour when used in a workbench window:
I think, either:
- Fix foreground and highlight colours in non-workbench text editors
- Don't apply colour theme to non-workbench text editors (this might be a VS Code change)
Work around
Add the below lines to your settings.json
. It changes the input box background colour to the same as the workbench background, so highlights are visible.
"workbench.colorCustomizations": {
"[Monokai Dark Soda]": {
"input.background": "#242424"
}
}
AdamCaviness commented
Merged PR , thanks.