Overview Version History Q & A Rating & Review
Noir for Visual Studio Code
A dark theme for Visual Studio Code. Pure black background, warm grey text,
muted sage accents.
Install
From the Marketplace
code --install-extension tahasadough.noir-omarchy
Or search Noir Omarchy in the Extensions view. Then open the Command
Palette (Ctrl+Shift+P) → Preferences: Color Theme → select Noir .
From source
npm install -g @vscode/vsce
vsce package
code --install-extension noir-omarchy-0.1.1.vsix
From folder (dev)
code --install-extension doesn't work on folders; instead open the repo
in VS Code and press F5 (or run the "Extension Development Host" from the
Run and Debug panel) after adding a .vscode/launch.json:
{
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Extension",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"]
}
]
}
Select Noir from the color theme picker.
Palette
Role
Hex
Used for
bg
#000000
Editor background
alt_bg
#1c1c1c
Panels, hovers, status
fg
#c1c1c1
Foreground
comment
#505050
Comments
constant
#aaaaaa
Constants, numbers
func
#888888
Functions
keyword
#999999
Keywords, storage
operator
#9b99a3
Operators, punctuation
string
#aa9988
Strings
type
#777755
Types, classes
visual
#333333
Selection
accent
#8a9a7b
Accent, focus, tags
License
MIT