This theme is designed to :
- Provide excellent contrast and reduce eye strain during long coding sessions, especially in low-light conditions.
- Ensure a balanced color scheme, offering a visually appealing coding experience.
- Work with common languages like JavaScript_, Python, C++ and more.
- Fully support VS Code's Bracket Pair Colorization feature, making it easy to visually distinguish nested code blocks.
Showcase ( Simple Snippet )
Font used in the snippet is JetBrains Mono.
Installation
- Open VS Code.
- Go to Extensions (
Ctrl+Shift+X or Cmd+Shift+X on macOS).
- Search for "Nightfall Coder".
- Click Install.
- Press
Ctrl+K , Ctrl+T (or Cmd+K , Cmd+T on macOS) to open the theme selector.
- Select "Nightfall Coder".
Alternatively, you can install it directly from the VS Code Marketplace.
Disabling Italics
Paste this into your settings.json to disable italics.
"editor.tokenColorCustomizations": {
"[Nightfall Coder]": {
"textMateRules": [{
"scope": [
"keyword.control",
"keyword.other",
"storage.type",
"storage.modifier",
"storage.control",
],
"settings": {
"fontStyle": ""
}
}]
}
}
Basic Color Palette
Color |
Used for: |
#E4B1F0 |
Strings |
#6D6D6D |
Comments |
#AAA0FA |
Functions |
#DEC76E |
Numbers |
#83D6C5 |
Keywords |
#68a9dd |
Operators |
#db4b4b |
Error |
#a9b1d6 |
Variables & Parameters |
| |