VSCode Theme
Prerequisites
- NodeJS
- Git
- Azure DevOps Account
Initial Steps To Follow
- Create/Open Folder you want to work with, and open the same in your CMD
- Now Install the Generator using command
npm install -g yo generator-code
-
Run Yo Code using command
yo code
yo code ? ========================================================================== We're constantly looking for ways to make yo better! May we anonymously report usage statistics to improve the tool over time? More info: https://github.com/yeoman/insight & http://yeoman.io ========================================================================== No _-----_ ╭──────────────────────────╮ | | │ Welcome to the Visual │ |--(o)--| │ Studio Code Extension │ `---------´ │ generator! │ ( _´U`_ ) ╰──────────────────────────╯ /___A___\ / | ~ | __'.___.'__ ´ ` |° ´ Y ` ? What type of extension do you want to create? (Use arrow keys) New Extension (TypeScript) New Extension (JavaScript) > New Color Theme New Language Support New Code Snippets New Keymap New Extension Pack New Language Pack (Localization)
-
Select
New Color Theme
option? Do you want to import or convert an existing TextMate color theme? (Use arrow keys) > No, start fresh Yes, import an existing theme but keep it as tmTheme file. Yes, import an existing theme and inline it in the Visual Studio Code color theme file.
- Then Select
No, start fresh
Option - Enter the Extension Name
- Enter your extension identifier
- Enter Description
- Enter Name of Your Theme shown to the user (ex. Extension Name)
- Select a base theme (ex. Dark)
-
Choose to Initialize git repo and so on fill in other details
? What type of extension do you want to create? New Color Theme ? Do you want to import or convert an existing TextMate color theme? No, start fresh ? What's the name of your extension? frostfire-theme ? What's the identifier of your extension? forstfiretheme ? What's the description of your extension? FrostFire Theme ? What's the name of your theme shown to the user? FrostFire Theme ? Select a base theme: Dark ? Initialize a git repository? No
Build The Theme
- Open the new created folder with your given theme name
cd foldername
- Then Run
code .
which will open a new Window of VS Code Editor - Then, inside the editor, press
F5
. This will compile and run the extension in a new Extension Development Host window. - Simultaneously you can edit the
json
file insidethemes
folder with your theme name. - Save the file on changes, same will be reflected in new Extension Development Host window
For Reference/Details on theme related parameters click here
Now For Sharing
- When done creating your theme use command
npm install vsce -g
and install Visual Studio Code Extensions - Now if you have linked it with a repo then its file, else create a new github repo and push your code.
- Now open
package.json
file and update all required data like repository url and type, icon and author. Just make sure all data is correct. - Now on Azure DevOps and create your organization under which you will publish your extensions
- Then Create a Personal Access Token (PAT) for
All Accessible Organizations
. - Create a Publisher using command
vsce create-publisher publisher-name
wherepublisher-name
is your publisher-name or use this link - When done login to publisher using command
vsce login publisher-name
wherepublisher-name
is your publisher-name - Then Package and Publish using command
vsce package
andvsce publish
- You can check the status at this link