Forest Ash Theme (VS Code)
A curated set of dark and light, eye-friendly themes for Visual Studio Code, inspired by forest ash textures and anime mood boards. Each palette is designed for readability across long coding sessions.

Theme Collection
This extension includes 21 hand-crafted themes plus unlimited custom themes you can generate yourself.
Dark Palette Sheet

Dark Themes
- Forest Ash
- Forest Ash Yoru Paper
- Forest Ash Sumi Moon
- Forest Ash Kitsune Ink
- Forest Ash Shoji Night
- Forest Ash Aizome Dusk
- Forest Ash Ronin Lantern
- Forest Ash Bamboo Midnight
- Forest Ash Nebula Manga
- Forest Ash Sakura Charcoal
- Forest Ash Kage Washi
Light Palette Sheet

Light Themes
- Forest Ash Yoru Paper Light
- Forest Ash Sumi Moon Light
- Forest Ash Kitsune Ink Light
- Forest Ash Shoji Night Light
- Forest Ash Aizome Dusk Light
- Forest Ash Ronin Lantern Light
- Forest Ash Bamboo Midnight Light
- Forest Ash Nebula Manga Light
- Forest Ash Sakura Charcoal Light
- Forest Ash Kage Washi Light
Theme Generator
Forest Ash includes a built-in dynamic theme generator that creates fully unique themes from any hex accent color. Every input color — including its hue, saturation, and lightness — influences the entire generated palette, so no two colors ever produce the same theme.
How It Works
The generator extracts all three HSL components from your chosen color:
- Hue → drives the base color family and split-complementary triad (keywords, strings, functions, types)
- Saturation → scales how vivid or muted the entire palette is
- Lightness → shifts tonal weight across backgrounds, foregrounds, and syntax tokens
Contrast and readability are preserved automatically for both dark and light variants.
How to Access the Generator
| Method |
Instructions |
| Command Palette (Recommended) |
Press Ctrl+Shift+P / Cmd+Shift+P, type Forest Ash: Generate Custom Theme, press Enter. |
| Right-Click (Editor) |
Right-click inside any open editor tab and select Generate Custom Theme. |
| VS Code Settings |
Go to Preferences > Settings, search Forest Ash, and set your default accent color and variant. |
Generation Steps
- Enter a hex accent color (e.g.
#4a9eff)
- Choose Dark or Light variant
- Give your theme a unique name
- VS Code will prompt you to Reload — after reloading, your theme appears in the native theme picker (
Cmd+K Cmd+T / Ctrl+K Ctrl+T) alongside all built-in themes
Available Commands
| Command |
Description |
Forest Ash: Generate Custom Theme |
Create a new theme from a hex color, variant, and name |
Forest Ash: Apply Custom Theme |
Quickly switch between your saved custom themes |
Forest Ash: Delete Custom Theme |
Permanently remove a generated theme |
Forest Ash: List Saved Custom Themes |
View all custom themes in a webview panel with color swatches |
Forest Ash: Quick Theme Picker |
Browse and apply all Forest Ash themes (built-in + custom) in one picker |
Custom Theme Persistence
Generated themes are saved inside the extension's themes/custom/ folder and registered in package.json automatically. They survive VS Code restarts and are restored silently on every activation. If a theme file goes missing (e.g. after reinstall), the extension cleans up stale metadata automatically.
Note: After generating or deleting a custom theme, a window reload is required for the change to appear in VS Code's native color theme picker.
Design Goals
- Dark and low-glare backgrounds for reduced eye fatigue
- Calm, desaturated accents with anime-inspired mood
- Distinct identity per theme without harsh neon contrast
- Balanced syntax tokens for comments, strings, keywords, functions, types, and punctuation
- Full semantic highlighting support
- Clean terminal ANSI colors that match each palette
- Bracket pair colorization built in
Install
Marketplace
- Open VS Code
- Go to Extensions (
Ctrl+Shift+X / Cmd+Shift+X)
- Search for
Forest Ash Theme
- Install and switch via
Preferences: Color Theme
Local Source
- Clone this repository
- Run
npm install
- Run
npm run package (requires vsce)
- Install the generated
.vsix via Extensions > ... > Install from VSIX
| Field |
Value |
name |
forest-ash-theme |
displayName |
Forest Ash Theme |
publisher |
NK2552003 |
version |
1.3.0 |
engines.vscode |
^1.70.0 |
Development
npm install # install dependencies
npm run package # build .vsix with vsce
npm run publish # publish to VS Code Marketplace
Repository Structure
forest-ash-theme/
├── extension.js # extension entry point, all commands
├── package.json # manifest, contributes.themes, commands
├── src/
│ └── themeGenerator.js # dynamic palette + theme JSON builder
├── themes/
│ ├── *.json # 21 hand-crafted static themes
│ └── custom/ # runtime-generated user themes (git-ignored)
│ └── .gitkeep
├── resources/
│ ├── icon.png
│ ├── Preview.png
│ ├── dark.png
│ └── light.png
└── README.md
License
MIT