A collection of dark VS Code themes with a built-in visual theme editor.
- Press
F5to open a new window with your extension loaded. - Open the color theme picker with
File > Preferences > Theme > Color Theme, or use thePreferences: Color Themecommand (Ctrl+K Ctrl+T) and pick your theme. - Open a file to see syntax highlighting in action.
-
Install the VS Code extension tool if you don't have it:
npm install -g @vscode/vsce
-
Package the extension:
vsce package
-
Install the generated
.vsixfile in VS Code viaExtensions > ... > Install from VSIX
Colors in the theme files follow the VS Code color theme format. The token colorization uses standard TextMate scopes.
This project includes a custom-built visual theme editor located in the theme-editor/ folder. The editor was created by Claude Code to simplify customizing VS Code theme colors.
- Live Preview - See theme changes in real-time with a VS Code-like mock UI
- Color Controls - Organized sections: Title Bar, Activity Bar, Side Bar, Editor, Status Bar, and Tabs
- SketchPicker Integration - Full color picker with hex input, RGB sliders, and preset colors
- JSON Export - View and copy the complete theme JSON with syntax highlighting
- Persistence - Colors are automatically saved to localStorage
-
Navigate to the theme-editor folder:
cd theme-editor -
Install dependencies:
npm install
-
Start the development server:
npm run dev
-
Open your browser to the URL shown (typically http://localhost:5173)