JARVIS HUDA dark VS Code theme built around the holographic HUD aesthetic — arc-reactor cyan glowing off a near-black substrate, with gold and orange for the warm accents.
Design philosophyThe theme treats the editor like a heads-up display: a near-black chrome ( Everything that isn't carrying meaning is grey. Body text, variables, punctuation and comments sit on a cool neutral ramp, which leaves the saturated colors free to mean something: cyan for the cursor, the active line number, the focused tab and the matching bracket; gold for the functions. The one color your eye is trained to chase always means "you are here" — and because nothing else competes for it, it works. InstallFrom the MarketplaceSearch for JARVIS HUD in the Extensions view ( Locally, from sourceCopy the extension folder into your VS Code extensions directory:
Restart VS Code, then open the theme picker with From a packaged
|
| Role | Hex | Style |
|---|---|---|
| Background (editor) | #04090e |
— |
| Background (chrome/UI) | #020609 |
— |
| Foreground | #c5ccd6 |
— |
| Keywords / control flow | #00e5ff |
bold |
| Functions | #ffc94d |
— |
| Classes / types | #5ce6a6 |
bold |
| Strings | #cfe88a |
— |
| Numbers / constants | #ff8c42 |
— |
| Comments | #59636e |
italic |
| Variables | #dfe4ea |
— |
| Parameters | #8ef2c4 |
italic |
| Booleans | #ff6ec7 |
— |
| Operators | #9fa9b7 |
— |
| Punctuation | #6b7480 |
— |
| Cursor / accents | #00d9ff |
— |
| Tags | #00d9ff |
— |
| Attributes | #ffd08a |
— |
Recommended settings
The theme leans on italics for comments and parameters. To get the most out of it, pair it with a font that has a true italic cut:
{
"editor.fontFamily": "'JetBrains Mono', 'Fira Code', monospace",
"editor.fontLigatures": true,
"editor.semanticHighlighting.enabled": true
}
Semantic highlighting is what keeps functions (gold) reliably distinct from keywords (cyan) in TypeScript, Rust, Python and other languages with a semantic token provider.
Regenerating the artwork
Both icon.png and images/preview.png are generated programmatically — no source
images are checked in:
python3 -m pip install Pillow
python3 scripts/make_icon.py # marketplace icon
python3 scripts/make_screenshot.py # README preview
make_screenshot.py reads its colors straight out of
themes/jarvis-hud-color-theme.json, so re-running it after a palette change keeps
the preview honest rather than letting it drift out of date.
To swap in a real screenshot instead, capture an editor window with Cmd+Shift+4
(space bar to grab the whole window) and save it over images/preview.png.
License
MIT — see LICENSE.
