Brings the colors of the Xcode 'Default (Dark)' and 'Default (Light)' themes to Visual Studio Code.
Matches the default window and syntax colors of Xcode.
Matches the default window colors of Xcode and the default syntax colors of Visual Studio Code (with adapted saturation).
For a more complete theme, add the following lines to your settings.json
:
{
"editor.cursorStyle": "line-thin",
"editor.fontFamily": "'SF Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 12,
"editor.fontWeight": "500",
"editor.lineHeight": 17,
"terminal.integrated.fontSize": 12,
"terminal.integrated.lineHeight": 1.23,
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.overviewRulerBorder": false,
"editor.renderIndentGuides": false,
"editor.renderLineHighlight": "all",
"workbench.activityBar.visible": false,
"workbench.editor.tabCloseButton": "left",
"workbench.editor.showIcons": false,
"window.nativeTabs": true,
"editor.tokenColorCustomizations": {
"[Xcode Partial (Light)]": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"foreground": "#536579",
"fontStyle": "italic"
}
}
]
},
"[Xcode Partial (Dark)]": {
"textMateRules": [
{
"scope": "source",
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "comment",
"settings": {
"foreground": "#6C7986",
"fontStyle": "italic"
}
}
]
}
}
}