Visual Studio代码:如何在深色主题的调试模式下为当前位置线设置突出显示颜色?

时间:2018-08-02 12:22:36

标签: colors visual-studio-code

我正在使用主题Dark + 在调试模式下,调试位置的突出显示颜色非常不成功-看不到任何东西。 我浏览了此Theme Color Reference上的几乎所有参数 ,但没有一个人不合适。 问题:what parameter changes this unfit yellow color

2 个答案:

答案 0 :(得分:1)

偶然看到我们的代码是用html + javascript编写的

因此,我爬上肠道,发现了如何克服脏乱的问题。

对于Windows 打开文件:

  

C:\ Program Files \ Microsoft VS Code \ resources \ app \ out \ vs \ workbench \   workbench.main.css

并添加到文件末尾:

  

.debug-remove-token-colors {background-color:#4b4b18!important;   边框:1px实心#4b4b18!important;}

OR

  

.debug-remove-token-colors {background-color:#000!important;   border-top:1px实心#4b4b18! border-bottom:1px solid#4b4b18!important;}

颜色真正改变的地方-我没找到它。虽然问题解决了。尽管VScode发誓他的文件已更改。

答案 1 :(得分:0)

可以通过编辑Visual Studio Code的settings.json文件进行配置。 进一步了解https://code.visualstudio.com/docs/getstarted/settings

"workbench.colorCustomizations": {
    "debugToolBar.background": "#004275",
    "editor.stackFrameHighlightBackground": "#004275", // current active debug line
}