vscode设置自定义颜色
文件->首选项->设置,找到settings.json,添加如下代码:
1 "workbench.colorCustomizations": 2 { 3 4 "editor.background": "#fdf6e3", 5 // "sideBar.background": "#d9f1d1", 6 // "activityBar.background": "#ddeedd", 7 // 终端前景背景色 8 "terminal.foreground" : "#141416", 9 "terminal.background" : "#a0ecd9" 10 11 // "editorLineNumber.foreground": "#f19012", 12 },
可以根据需要调整