I am actually trying to get one color theme that I use in VS-Code for VS2015. But the theme is for sublime-text/atom. I can't find that color-theme for visual studio 2015.
I found this question here visual studio 2015 sublime theme
Is there any way to install or import vs-code extension to visual studio 2015 ?
If you have a Textmate
.tmtheme
file, like the ones used for themes in Sublime Text, then you can convert that to a VSCode theme extension using theyo code
tool as described in the documentation: https://vscode-docs.readthedocs.io/en/stable/customization/themes/#adding-a-new-themeBasically, you need
npm
installed.Place the
.tmtheme
file somewhere accessible from your terminal and do:Follow the prompts, specifying the full file path of the theme file.
Place the resulting extension folder into
%vs_code_dir%/extensions/
and restart VSCode before using your new theme.