vscode 护眼色配置
1. 安装Atom One Light Theme 扩展
2. 进入设置,设置如下图:
3. 点击settings.json设置,加入如下代码:
1 "workbench.colorTheme": "Atom One Light", 2 "workbench.colorCustomizations": { 3 4 "[Atom One Light]": { 5 "titleBar.activeBackground": "#bddac0", 6 "titleBar.inactiveBackground": "#bddac0", 7 "titleBar.border": "#AFC7B2", 8 "editor.background": "#C7EDCC", 9 "sideBar.background": "#C7EDCC", 10 "sideBar.border": "#AFC7B2", 11 "sideBarTitle.foreground": "#24ACF2", 12 "activityBar.background": "#C7EDCC", 13 "activityBar.border": "#AFC7B2", 14 "editorCursor.foreground": "#06171B", 15 "editor.lineHighlightBackground": "#c0e4c3b6", 16 "editor.selectionBackground": "#AFC7B2", 17 "activityBar.activeBackground": "#bddac0", 18 "statusBar.background": "#bddac0", 19 "dropdown.background": "#CBE9CB", 20 "dropdown.listBackground": "#CBE9CB", 21 "dropdown.border": "#bddac0", 22 "editorHoverWidget.background": "#bddac0", 23 "editorHoverWidget.border": "#AFC7B2", 24 "editorHint.border": "#AFC7B2", 25 "editorError.foreground": "#ff0000", 26 "editorGroupHeader.tabsBackground": "#CBE9CB", 27 "editorIndentGuide.background1": "#bddac0", 28 "editorIndentGuide.activeBackground1": "#AFC7B2", 29 "sideBarSectionHeader.background": "#bddac0", 30 "tab.activeBackground": "#AFC7B2", 31 "tab.activeBorder": "#AFC7B2", 32 "tab.border": "#afc7b2b9", 33 "tab.unfocusedHoverBackground": "#AFC7B2", 34 "tab.inactiveBackground": "#bddac0", 35 "breadcrumb.focusForeground": "#24ACF2", 36 "input.background": "#bddac0", 37 "input.border": "#AFC7B2", 38 "list.hoverForeground": "#24ACF2", 39 "list.hoverBackground": "#bddac0", 40 "list.inactiveSelectionForeground": "#24ACF2", 41 "list.inactiveSelectionBackground": "#bddac0", 42 "list.activeSelectionBackground": "#bddac0", 43 "button.background": "#bddac0", 44 "statusBarItem.hoverBackground": "#AFC7B2", 45 "menu.selectionBackground": "#bddac0", 46 "minimap.selectionHighlight": "#24ACF2", 47 "diffEditor.border": "#AFC7B2", 48 "editorGroup.border": "#AFC7B2", 49 } 50 },
4. 保存生效。
本文来自博客园,作者:求隐,转载请注明原文链接:https://www.cnblogs.com/duguqiuying/articles/17705114.html