Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>Void-ThemeNew to Visual Studio Code? Get it now.
Void-Theme

Void-Theme

DevHarsha

|
10 installs
| (0) | Free
Void — forged in darkness, made for creators of worlds. A minimalist dark theme with pure black background and carefully crafted syntax highlighting.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

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.

Void Theme Preview

✨ 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

  1. Open VS Code
  2. Go to Extensions (Ctrl+Shift+X)
  3. Search for "xvoid" or "Void"
  4. Click Install
  5. Go to File → Preferences → Color Theme
  6. Select "Void"

Manual Installation

  1. Download the .vsix file from the releases page
  2. Open VS Code
  3. Press Ctrl+Shift+P to open command palette
  4. Type "Extensions: Install from VSIX"
  5. Select the downloaded .vsix file
  6. Reload VS Code when prompted
  7. Apply the theme from File → Preferences → Color Theme

🚀 Quick Start

After installation, activate the theme by:

  1. Windows/Linux: Ctrl+K Ctrl+T
  2. macOS: Cmd+K Cmd+T
  3. Select "Void" from the theme list

Or use the command palette:

  1. Press Ctrl+Shift+P (or Cmd+Shift+P on macOS)
  2. Type "Preferences: Color Theme"
  3. 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.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. 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.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft