一行代码教会你VS Code自定义注释 关键字 字符串 变量名 函数名 数字颜色 以及代码选中高亮
step 1
step 2
step 3
在setting.json
中加入以下代码
"editor.tokenColorCustomizations": {
"comments": "#16e716", // 注释
"keywords": "#0a0", // 关键字
"variables": "#f00", // 变量名
"strings": "#e2d75dbd", // 字符串
"functions": "#5b99fcc9", // 函数名
"numbers": "#AE81FF" // 数字
},
// 选中高亮的颜色
"workbench.colorCustomizations": {
"editor.selectionBackground": "#5851bb"
},
根据自己的喜好更改颜色即可