Black, white and orange flavored dark theme for VSCode based on original Vesper.
Disclaimer: This was hacked together following a tutorial. I have zero experience building themes. Made for personal usage. Not thoroughly tested at all, might have broken edge cases.
-
Clone the repository:
git clone https://github.com/jach/vesper-black.git cd vesper-black -
Open the project in VS Code:
code . -
Edit the theme colors in
themes/Vesper-black-color-theme.json -
To test your changes, press
F5to open a new VS Code window with your theme applied -
Adjust colors and save to see updates in the test window
For more information on VS Code theme development, see the VS Code Theme Documentation
-
Ensure all changes are committed and the theme looks good
-
Update the version in
package.json:"version": "x.y.z"
-
Create a git tag for the release:
git tag vx.y.z git push origin vx.y.z
-
Package the extension:
npm install -g vsce vsce package
-
Publish to the VS Code Marketplace:
vsce publish
Make sure you have a Personal Access Token set up for the VS Code Marketplace before publishing.
