vscode编辑器,自己喜欢的颜色

"workbench.colorCustomizations": { //覆盖当前所选颜色主题的颜色
 "editor.background": "#1b1b19", //编辑器背景色
 "editor.selectionBackground": "#3514c554", //用户选中代码段的颜色 
 "editor.findMatchBackground": "#ff0000", //当前搜索匹配的颜色
 "editor.findMatchHighlightBackground": "#fa0a01", //其他搜索匹配项的颜色
 "editor.findRangeHighlightBackground": "#ff9900", //限制搜索范围的颜色
 "editor.lineHighlightBackground": "#4646f128", //光标所在行高亮内容的背景颜色
 "editor.lineHighlightBorder": "#68525254" //光标所在行四周边框的背景颜色
  },
 "editor.tokenColorCustomizations": {
 "comments": "#8668a1", // 注释
 "keywords": "#c124ff", // 关键字
 "variables": "#7b17fdd3", // 变量名
 "strings": "#07ff7b", // 字符串
 "functions": "#f58e07", // 函数名
 "numbers": "#fa3c65" // 数字
  },

你可能感兴趣的:(vscode编辑器,自己喜欢的颜色)