Atom 标志性的 One Dark 主题 - One Dark Pro是VS Code下载安装最多的主题皮肤。
皮肤下载地址:https://marketplace.visualstudio.com/items?itemName=zhuangtongfa.Material-theme

建议编辑器设置
"editor.fontSize": 20, "editor.lineHeight": 30, "editor.fontFamily": "JetBrains Mono",
如果您想尝试新颜色,使用设置 workbench.colorCustomizations 来自定义当前选定的主题。可以在“settings.json”文件中添加此代码段:
"workbench.colorCustomizations": {
"tab.activeBackground": "#282c34",
"activityBar.background": "#282c34",
"sideBar.background": "#282c34",
"tab.activeBorder": "#d19a66",
}或使用设置 editor.tokenColorCustomizations
"editor.tokenColorCustomizations": {
"[One Dark Pro]": {
"textMateRules": [
{
"scope": ["source.python"],
"settings": {
"foreground": "#e06c75"
}
}
]
}
}