Galaxy Themes
A collection of VS Code color themes: Nebula Midnight, Cyber Lime, Pastel Lime, and Cyan Splash.
Installation (Development Mode / Try It First)
- Extract the
galaxy-theme folder and move it to the VS Code extensions directory:
- Windows:
%USERPROFILE%\.vscode\extensions
- macOS/Linux:
~/.vscode/extensions
- Restart VS Code.
- Press
Ctrl+Shift+P (or Cmd+Shift+P on Mac) → type "Preferences: Color Theme" → select "Nebula Midnight".
Installation via VSIX (for sharing/publishing)
To package it as a .vsix file for one-click installation:
npm install -g @vscode/vsce
cd galaxy-themes
vsce package
This will generate galaxy-themes-hd-1.0.0.vsix. Install it with:
code --install-extension galaxy-themes-hd-1.0.0.vsix
Or via VS Code: open the Extensions tab → click the three dots (...) → "Install from VSIX...".
Customization
All colors are defined in themes/nebula-midnight-color-theme.json:
"colors" → controls UI appearance (sidebar, tabs, status bar, etc.).
"tokenColors" → controls syntax highlighting colors (keywords, strings, functions, etc.).
Simply change the hex color values to your liking, then reload VS Code (Developer: Reload Window) to see the changes.
Main Color Palette
| Element |
Color |
| Background |
#10131c |
| Foreground |
#d6deeb |
| Blue accent |
#7aa2f7 |
| Purple accent |
#bb9af7 |
| String (green) |
#9ece6a |
| Tag/error (pink) |
#f7768e |
| |