VS Code 在资源管理器中更改修改后的文件颜色
VS Code changing modified file colors in Explorer
我不太喜欢修改文件资源管理器中的桃色。搜索颜色主题参考我似乎无法找到覆盖..
https://code.visualstudio.com/docs/getstarted/theme-color-reference
我什至尝试过禁用扩展,但我仍然看到那些预定义的颜色。我使用的是 Monokai Soda 主题,但这似乎不是在边栏中设置这些颜色的原因。
感谢任何帮助 - 这有点让我发疯..
回答
需要错误样式和 git 覆盖的组合,请参阅下面的答案:
"workbench.colorCustomizations": {
"list.errorForeground": "#b3e5ec",
"list.warningForeground": "#00d9ff",
"gitDecoration.modifiedResourceForeground": "#00ffb3",
"gitDecoration.untrackedResourceForeground": "#f7aeae"
}
事实证明,您看到的颜色不是由于内容修改所致。这是因为您的文件中包含 problems/errors。如果将鼠标悬停在文件名上,您应该会看到 x problems detected in this file
。
要改变它们的颜色,您可以使用
"workbench.colorCustomizations": {
"list.errorForeground": "#00AA00"
}
修改文件的颜色看起来像 settings.json
突出显示的颜色,也就是浅绿色。
我不太喜欢修改文件资源管理器中的桃色。搜索颜色主题参考我似乎无法找到覆盖..
https://code.visualstudio.com/docs/getstarted/theme-color-reference
我什至尝试过禁用扩展,但我仍然看到那些预定义的颜色。我使用的是 Monokai Soda 主题,但这似乎不是在边栏中设置这些颜色的原因。
感谢任何帮助 - 这有点让我发疯..
回答
需要错误样式和 git 覆盖的组合,请参阅下面的答案:
"workbench.colorCustomizations": {
"list.errorForeground": "#b3e5ec",
"list.warningForeground": "#00d9ff",
"gitDecoration.modifiedResourceForeground": "#00ffb3",
"gitDecoration.untrackedResourceForeground": "#f7aeae"
}
事实证明,您看到的颜色不是由于内容修改所致。这是因为您的文件中包含 problems/errors。如果将鼠标悬停在文件名上,您应该会看到 x problems detected in this file
。
要改变它们的颜色,您可以使用
"workbench.colorCustomizations": {
"list.errorForeground": "#00AA00"
}
修改文件的颜色看起来像 settings.json
突出显示的颜色,也就是浅绿色。