Reputation: 11
I'm migrating my development environment from JetBrains to VSCode.
But I can't use my color scheme from JetBrains on VSCode.
How can I do?
Upvotes: 1
Views: 1495
Reputation: 1190
I would suggest you this extension - https://marketplace.visualstudio.com/items?itemName=rokoroku.vscode-theme-darcula
Also, i made my own settings to change interface of whole ide with terminal, panel etc.
settings.json:
"workbench.colorCustomizations": {
"editor.background": "#232425",
"editorGutter.background": "#232425",
"activityBar.background": "#2F3032",
"sideBarSectionHeader.background": "#2F3032",
"sideBar.background": "#2F3032",
"terminal.foreground": "#678046",
"terminal.ansiBrightBlue": "#2F7ECD",
"terminal.ansiBrightGreen": "#d37e02",
"terminal.background": "#242424",
},
Upvotes: 0