Void Theme
Void — forged in darkness, made for creators of worlds.
A minimalist dark theme for Visual Studio Code that embraces the beauty of pure darkness while maintaining excellent readability and a carefully crafted color palette for syntax highlighting.

✨ Features
- Pure Black Background: True
#000000
black for the ultimate dark coding experience
- Carefully Selected Colors: Thoughtfully chosen syntax highlighting colors for maximum readability
- Minimalist Design: Clean, distraction-free interface that lets your code shine
- Eye-Friendly: Reduced eye strain during long coding sessions
- Full UI Coverage: Consistent theming across all VS Code interface elements
🎨 Color Palette
Syntax Colors
- Keywords:
#B877DB
- Purple for language keywords
- Strings:
#9CDC8C
- Green for string literals
- Functions:
#61AFEF
- Blue for function names
- Classes:
#E5C07B
- Yellow for class names
- Comments:
#7A869A
- Gray with italic styling
- Numbers:
#D19A66
- Orange for numeric constants
- Tags:
#E06C75
- Red for HTML/XML tags
- Variables:
#E6E6E6
- Light gray for variables
- Operators:
#FFFFFF
- White for operators
- Constants:
#56B6C2
- Cyan for constants
UI Colors
- Background: Pure black (
#000000
)
- Foreground: Light gray (
#E6E6E6
)
- Selection: Deep blue (
#222244
)
- Line Numbers: Dark gray (
#444444
)
- Active Line Number: Light gray (
#AAAAAA
)
📦 Installation
From VS Code Marketplace
- Open VS Code
- Go to Extensions (
Ctrl+Shift+X
)
- Search for "xvoid" or "Void"
- Click Install
- Go to File → Preferences → Color Theme
- Select "Void"
Manual Installation
- Download the
.vsix
file from the releases page
- Open VS Code
- Press
Ctrl+Shift+P
to open command palette
- Type "Extensions: Install from VSIX"
- Select the downloaded
.vsix
file
- Reload VS Code when prompted
- Apply the theme from File → Preferences → Color Theme
🚀 Quick Start
After installation, activate the theme by:
- Windows/Linux:
Ctrl+K Ctrl+T
- macOS:
Cmd+K Cmd+T
- Select "Void" from the theme list
Or use the command palette:
- Press
Ctrl+Shift+P
(or Cmd+Shift+P
on macOS)
- Type "Preferences: Color Theme"
- Select "Void"
🛠️ Customization
You can customize the theme by adding overrides to your VS Code settings:
{
"workbench.colorCustomizations": {
"[Void]": {
"editor.background": "#0a0a0a",
"editor.foreground": "#f0f0f0"
}
},
"editor.tokenColorCustomizations": {
"[Void]": {
"comments": "#888888"
}
}
}
📸 Screenshots
JavaScript
// Example JavaScript code
function createWorld(name, dimensions) {
const world = {
name: name,
dimensions: dimensions,
creatures: [],
magic: true
};
return world;
}
class WorldCreator {
constructor() {
this.worlds = [];
}
addWorld(world) {
this.worlds.push(world);
}
}
Python
# Example Python code
def forge_in_darkness(materials, power_level=100):
"""
Forge powerful items in the void
"""
if power_level > 50:
return f"Forged {materials} with immense power!"
return f"Created {materials} in the darkness."
class VoidCreator:
def __init__(self, name):
self.name = name
self.creations = []
def create(self, item):
self.creations.append(item)
print(f"{self.name} created {item}")
🤝 Contributing
Contributions are welcome! Please feel free to submit issues and pull requests.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
)
- Commit your changes (
git commit -m 'Add some amazing feature'
)
- Push to the branch (
git push origin feature/amazing-feature
)
- Open a Pull Request
📝 Changelog
See CHANGELOG.md for a list of changes and version history.
🐛 Issues
Found a bug or have a suggestion? Please open an issue on GitHub.
📄 License
This theme is released under the MIT License.
👤 Author
Harsha - WebDevHarsha
🌟 Support
If you like this theme, please:
- ⭐ Star the repository
- 🐛 Report issues
- 📢 Share with fellow developers
- ☕ Buy me a coffee (optional)
Made with 🖤 by developers, for developers.
Embrace the void. Create worlds.