Visual Studio代码调试控制台颜色

时间:2019-07-09 08:15:47

标签: visual-studio-code vscode-settings vscode-extensions vscode-debugger

我正在使用Light(Visual Studio)主题。调试控制台上的黄色文本只是不可见。怎么改变呢? https://code.visualstudio.com/api/references/theme-color没有该信息!到底是谁将它编程为使用黄色/白色!?!

1 个答案:

答案 0 :(得分:2)

在14.9.2中,在“ workbench.colorTheme”选项之后添加以下内容对我有用。

"workbench.colorCustomizations": {
    "debugConsole.warningForeground": "#800",
    "debugConsole.errorForeground": "#d00",
    "debugConsole.sourceForeground": "#0c0",
    "debugConsole.infoForeground": "#00f"
}
相关问题