Fungoid Theme for VSCode
A dark theme with orange (#ff7800) and green (#3cdc50) as dominant brand colors, featuring Dracula-inspired syntax highlighting.
Screenshots

Features
- Primary Colors: Orange (#ff7800) and green (#3cdc50) as dominant accents
- Dracula-Inspired Syntax: Clear distinction between strings, keywords, types, and operators
- Optimized Performance: 61% smaller theme file with consolidated scope definitions
Installation
Method 1: VSIX Extension (Recommended)
- Download the latest
.vsix file from the releases page
- In VSCode, press
Ctrl+Shift+P (or Cmd+Shift+P on Mac)
- Type "Extensions: Install from VSIX" and select it
- Choose the downloaded
.vsix file
- Press
Ctrl+K Ctrl+T and select "Fungoid"
Method 2: Marketplace
Install from the VSCode Marketplace
Method 3: Development Installation
cd vscode/fungoid-vscode-theme
npm install -g @vscode/vsce
vsce package
code --install-extension fungoid-theme-1.0.0.vsix
Usage
Activate the theme:
- Press
Ctrl+K Ctrl+T (or Cmd+K Ctrl+T on Mac)
- Select "Fungoid" from the theme picker
Or in settings.json:
{
"workbench.colorTheme": "Fungoid"
}
Customization
Override colors in your VSCode settings.json:
{
"workbench.colorCustomizations": {
"[Fungoid]": {
"editor.foreground": "#e8e6e3",
"editor.background": "#1e1e1e",
"editorCursor.foreground": "#ff7800"
}
}
}
Development
Building the Extension
cd vscode/fungoid-vscode-theme
npm install -g @vscode/vsce
vsce package
Generates fungoid-theme-1.0.0.vsix.
Testing Changes
- Edit
themes/fungoid.json
- Rebuild with
vsce package
- Install with
code --install-extension fungoid-theme-1.0.0.vsix
Contributing
See CONTRIBUTING.md.
License
MIT License - see LICENSE.