10

I am using Light (Visual Studio) theme. The yellow text on the debug console is just not visible. How to change it? https://code.visualstudio.com/api/references/theme-color doesn't have the info! Who the hell on earth would use Yellow text On White background colour!?!

5
  • 1
    Check the answer here stackoverflow.com/questions/53735278/… Commented Jul 9, 2019 at 8:19
  • That's for editor. Not debug console. Commented Jul 9, 2019 at 8:47
  • Check this issue github.com/Microsoft/vscode/issues/47457 Commented Jul 9, 2019 at 8:49
  • I believe that the yellow is not supported color.. Commented Jul 9, 2019 at 9:01
  • That issue was using Dark theme. Use Light Theme and check the debug console. Commented Jul 10, 2019 at 1:09

1 Answer 1

14

Adding the following after the "workbench.colorTheme" option worked for me in 14.9.2.

"workbench.colorCustomizations": {
    "debugConsole.warningForeground": "#800",
    "debugConsole.errorForeground": "#d00",
    "debugConsole.sourceForeground": "#0c0",
    "debugConsole.infoForeground": "#00f"
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.