vscode中终端字体设置

整理了一些vscode中终端字体及各种样式的设定 , 废话不多说 看下面

把下面的粘贴到 setting.json 中 根据个人需要可以更改样式

瞎搞的 大部分应该准确 自己调试出来的 

"workbench.colorCustomizations": {

"terminal.background": "#1f2020",//背景颜色

"terminal.foreground": "#6ed97d",//整体的字体颜色

"terminalCursor.background": "#D8D8D8",//光标的背景颜色 猜测应该是设置方块光标的时候生效

"terminalCursor.foreground": "#D8D8D8",//光标的颜色

"terminal.ansiBlue": "#bbaa10",// INFO 的背景颜色 比如 run serve的时候

"terminal.ansiBlack": "#111112",// INFO 的字体颜色 比如 run serve的时候

"terminal.ansiBrightBlack": "#2aca0a",//服务跑起来的时候时间颜色 参考右上角

"terminal.ansiBrightBlue": "#1a0cdb",//这个没有测出来 测出来告诉我一声

"terminal.ansiBrightCyan": "#0ed4ba",//服务跑起来的端口号颜色http://localhost:8080/ 8080的颜色

"terminal.ansiBrightYellow": "#ced115",//10 moderate severity vulnerabilities 中 moderate的颜色

"terminal.ansiWhite": "#db0686",//报错时候ERR! 前面的字体颜色 比如" npm ERR! " 中 npm 颜色

"terminal.ansiBrightGreen": "#f80b0b",//懒得测试了 上面基本够用了

"terminal.ansiBrightMagenta": "#7c10e1",//懒得测试了 上面基本够用了

"terminal.ansiBrightRed": "#AB4642",//懒得测试了 上面基本够用了

"terminal.ansiBrightWhite": "#F8F8F8",//懒得测试了 上面基本够用了

"terminal.ansiCyan": "#86C1B9",//懒得测试了 上面基本够用了

"terminal.ansiGreen": "#00e2ff",//字符串颜色

"terminal.ansiMagenta": "#BA8BAF",//懒得测试了 上面基本够用了

"terminal.ansiRed": "#eb0505",//懒得测试了 上面基本够用了

"terminal.ansiYellow": "#0bab06",//懒得测试了 上面基本够用了

},

"editor.tokenColorCustomizations": {

"comments": "#acb4ac", // 注释

//"keywords": "#0a0", // 关键字

//"variables": "#ebbf6f", // 变量名

//"strings": "#e2d75dbd", // 字符串

//"functions": "#5b99fcc9", // 函数名

//"numbers": "#AE81FF" // 数字

},

你可能感兴趣的:(vscode)