Its my custom theme for vscode inspired in the sea, sunsets, rivers, and forests.
Officially Language Support:
- javascript
- typescript
- powershell
- bash
- html
- css
- jsx/tsx
- json
- xml
- yml | yaml
Press F5 in VSCode to open a new window with the extension loaded for testing.
Install the VSCode Extension Manager CLI:
npm install -g @vscode/vsceCreate a .vsix file for local installation or distribution:
vsce packageThis generates deep-type-theme-{version}.vsix that can be installed manually in VSCode.
-
Create a Personal Access Token (PAT)
- Go to https://dev.azure.com/
- Create a new organization if needed
- Go to User Settings → Personal Access Tokens
- Create a token with
Marketplace (Manage)scope
-
Login to vsce
vsce login {publisher-name}Enter your PAT when prompted.
-
Publish the extension
vsce publish
Or publish with a specific version bump:
vsce publish patch # 1.2.1 → 1.2.2 vsce publish minor # 1.2.1 → 1.3.0 vsce publish major # 1.2.1 → 2.0.0
-
Verify Publication