Reputation: 479
I am using "Popping and Locking" color theme in VS Code and I want to use same theme in WebStorm also. But VS Code is using .vsix
extention and WebStorm is using .icls
How can I convert .vsix
to .icls
or how can I use same theme in WebStorm. Am I have to do it manually?
Upvotes: 0
Views: 6536
Reputation: 865
You can check https://github.com/mkubdev/material-vscode-jetbrains to get the color scheme of the dark+ theme from Visual Code for Webstorm. And the .xml to add to the plugin Material UI.
Voila!
Upvotes: 0
Reputation: 587
Visual Studio Code themes can be implemented in two different ways, using a JSON file of properties, or using a tmTheme. If you look at the repository of your colour theme (https://github.com/hedinne/popping-and-locking-vscode for the theme you mentioned), you can see that it uses the JSON format.
tmThemes and JSON themes can be converted to a JetBrains theme with their official tool (https://github.com/JetBrains/colorSchemeTool).
I haven't used this tool or tested the functionality, so I don't know for sure that this will work. However, it looks to be quite straightforward. You can check the code of the colorSchemeTool yourself, but I believe you will need to do the following:
convert.sh
scriptAgain, I haven't tested the functionality myself, but this seems to be the way to do it.
Upvotes: 6