Convert VS Code themes to Zed editor format
npm install migrazedConvert VS Code themes to Zed editor format.
Migrazed is a CLI tool that converts VS Code theme JSON files to Zed's theme format. It supports both dark and light theme variants and can merge them into a single Zed theme file.
``bash`
bun install -g migrazed
Or use directly with npx:
`bash`
bunx migrazed
`bash`
migrazed
- - Path to the VS Code dark theme JSON file (required)-l, --light
- - Path to the VS Code light theme JSON file (optional)-o, --output
- - Output path for the Zed theme file (optional)
Convert a single dark theme:
`bash`
migrazed ./themes/my-theme-dark.json
Convert and merge both dark and light variants:
`bash``
migrazed ./themes/my-theme-dark.json -l ./themes/my-theme-light.json -o ./output/my-theme.json
Dark:
Light:
Dark:
Light:
- Converts VS Code color themes to Zed format
- Supports both dark and light theme variants
- Merges multiple variants into a single theme file
- Preserves semantic highlighting colors
- Maps terminal ANSI colors
- Converts syntax token colors to Zed's style system
- Migration Guide - Detailed guide on migrating themes
- VS Code Theme Variables - VS Code theme variable reference
- Zed Theme Variables - Zed theme variable reference
- Crossover Mapping - Variable mapping between editors
MIT
With <3 by Ender Bonnet