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!?!
You can customize your active Visual Studio Code color theme with the workbench. colorCustomizations user setting. Note: If you want to use an existing color theme, see Color Themes where you'll learn how to set the active color theme through the Preferences: Color Theme dropdown (Ctrl+K Ctrl+T).
Here's your quick reference to the colors and icons in the editor window's right-hand margin: Yellow: The line has been changed but not yet saved. Green: The line has been changed and saved. Orange: The line has been changed, saved, and the change undone. Little square dots in the middle of the margin: Break points.
To bring up the Run and Debug view, select the Run and Debug icon in the Activity Bar on the side of VS Code. You can also use the keyboard shortcut Ctrl+Shift+D. The Run and Debug view displays all information related to running and debugging and has a top bar with debugging commands and configuration settings.
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"
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With