如何使用 settings.json 更改 activity 栏中图标的颜色
How to change the color of the icons in the activity bar using settings.json
我一直在按照 Coder Coder 的教程进行操作,以使我的 vscode 看起来更好
(教程 link https://youtu.be/pGzssFNtWXw)。
根据视频,我打开了 settings.json 文件并编写了一些代码
但是当我尝试更改 activity 栏中图标的颜色时,没有任何反应,这是我尝试用来更改颜色的代码行:"activityBarBadge.foreground": "#000000"
虽然这不起作用
代码如下:
"workbench.colorCustomizations": {
"editor.background": "#000814",
"sideBar.background": "#000d20",
"sideBarTitle.foreground": "#ffd60a",
"sideBarSectionHeader.foreground": "#ffd60a",
"activityBar.activeBackground": "#ffea81d5",
"activityBar.background": "#22223b",
"statusBar.background": "#ffd60a",
}
这是我得到的结果:
要更改 Activity 栏图标颜色,请使用这两个 colorCustomizations
:
"activityBar.inactiveForeground"
"activityBar.foreground"
// 对于活动图标
我一直在按照 Coder Coder 的教程进行操作,以使我的 vscode 看起来更好
(教程 link https://youtu.be/pGzssFNtWXw)。
根据视频,我打开了 settings.json 文件并编写了一些代码
但是当我尝试更改 activity 栏中图标的颜色时,没有任何反应,这是我尝试用来更改颜色的代码行:"activityBarBadge.foreground": "#000000"
虽然这不起作用
代码如下:
"workbench.colorCustomizations": {
"editor.background": "#000814",
"sideBar.background": "#000d20",
"sideBarTitle.foreground": "#ffd60a",
"sideBarSectionHeader.foreground": "#ffd60a",
"activityBar.activeBackground": "#ffea81d5",
"activityBar.background": "#22223b",
"statusBar.background": "#ffd60a",
}
这是我得到的结果:
要更改 Activity 栏图标颜色,请使用这两个 colorCustomizations
:
"activityBar.inactiveForeground"
"activityBar.foreground"
// 对于活动图标