{
// 代码字体:Cascadia Mono SemiBold
“editor.fontFamily”: “‘Cascadia Mono’, ‘Noto Sans Mono CJK SC’, Consolas, monospace”,
“editor.fontWeight”: “600”,
“editor.fontSize”: 15,
“editor.lineHeight”: 1.55,
“editor.fontLigatures”: true,
// 终端同步字体 "terminal.integrated.fontFamily": "'Cascadia Mono'", "terminal.integrated.fontWeight": "600", "terminal.integrated.fontSize": 14, // 全局界面配色(对齐Typora色值) "workbench.colorCustomizations": { // 编辑器主背景 = Typora --bg-color: #3c3f46 "editor.background": "#3c3f46", // 普通文字颜色 = Typora --text-color: #9EC2A2 "editor.foreground": "#9EC2A2", // 侧边栏背景 = Typora --side-bar-bg-color: #2E3033 "sideBar.background": "#2E3033", // 左侧图标活动栏 "activityBar.background": "#2E3033", // 底部状态栏 "statusBar.background": "#2E3033", // 代码行号背景 = Typora CodeMirror-gutters #2d2f34 "editorGutter.background": "#2d2f34", // 文本选中高亮色 "editor.selectionBackground": "#4a89dc", // 鼠标悬浮条目背景 "list.hoverBackground": "#70717d", // 激活文件标签背景 "tab.activeBackground": "#222222", "tab.activeBorderTop": "#8d8df0", // 滚动条底色弱化 "scrollbarSlider.background": "rgba(255,255,255,0.15)" }, // 语法微调,贴近你Typora文字质感 "editor.tokenColorCustomizations": { "textMateRules": [ { "scope": "comment", "settings": {"foreground": "#9DA2A6"} }, { "scope": "string", "settings": {"foreground": "#e0e0e0"} }, { "scope": "keyword", "settings": {"foreground": "#b9d5c4"} }, { "scope": "variable", "settings": {"foreground": "#9EC2A2"} } ] }}