AntZed Theme
A warm light theme for VS Code inspired by Anthropic's brand colors and Zed's minimalist design philosophy.
Note: This is the Light version. Dark theme coming soon!
✨ Features
- 🎨 Warm, eye-friendly color palette based on Anthropic's official brand colors
- 🌅 Gentle light theme perfect for extended coding sessions
- 📝 Optimized syntax highlighting for multiple programming languages
- 🎯 Carefully crafted UI element colors
- 🔤 Optional IBM Plex Sans font integration for UI and Lelix font for editor
🎨 Color Palette
Primary Colors
- Background:
#faf9f5 - Warm beige background
- Foreground:
#141413 - Dark text with excellent contrast
- Secondary:
#b0aea5 - Soft gray for comments and inactive elements
- Border:
#e8e6dc - Subtle border color
Accent Colors
- Primary Accent:
#d97757 - Orange for keywords, links, and active states
- Secondary Accent:
#6a9bcc - Blue for functions and operators
- Tertiary Accent:
#788c5d - Green for strings and constants
📦 Installation
From VS Code Marketplace
- Open VS Code
- Go to Extensions (
Cmd+Shift+X or Ctrl+Shift+X)
- Search for "AntZed"
- Click Install
- Press
Cmd+K Cmd+T (macOS) or Ctrl+K Ctrl+T (Windows/Linux)
- Select "AntZed Light" from the list
From Source
- Clone or download this repository
- Copy the
anthropic-light-theme folder to your VS Code extensions directory:
- Windows:
%USERPROFILE%\.vscode\extensions
- macOS/Linux:
~/.vscode/extensions
- Restart VS Code
- Open Command Palette (
Cmd+Shift+P or Ctrl+Shift+P)
- Type "Color Theme" and select "AntZed Light"
🔤 Optional: Font Customization
For the full Zed-inspired experience:
Recommended Fonts
- UI Font: IBM Plex Sans (for workbench, sidebar, tabs)
- Editor Font: Lelix (for code editing)
1. Install Fonts
IBM Plex Sans (macOS):
brew tap homebrew/cask-fonts
brew install font-ibm-plex-sans
IBM Plex Sans (Windows/Linux):
Download from Google Fonts
Lelix Font:
Download from Lelix Font Website and install
2. Apply UI Font (IBM Plex Sans)
- Install Custom CSS and JS Loader extension
- Add to your
settings.json:
{
"vscode_custom_css.imports": [
"file://${userHome}/.vscode/extensions/antzed-theme/anthropic-vscode-custom.css"
]
}
- Press
Cmd+Shift+P (macOS) or Ctrl+Shift+P (Windows/Linux)
- Run
Enable Custom CSS and JS
- Restart VS Code
3. Apply Editor Font (Lelix)
The theme automatically sets Lelix as the editor font for common file types. If you want to apply it globally, add to your settings.json:
{
"editor.fontFamily": "Lelix, Menlo, Monaco, 'Courier New', monospace"
}
🚀 Usage
Activate the Theme
Option 1:
- Press
Cmd+K Cmd+T (macOS) or Ctrl+K Ctrl+T (Windows/Linux)
- Select "AntZed Light" from the list
Option 2:
- Press
Cmd+Shift+P (macOS) or Ctrl+Shift+P (Windows/Linux)
- Type "Color Theme"
- Select "AntZed Light"
📸 Preview
JavaScript
// Functions and keywords use Anthropic brand colors
function greetUser(name) {
const message = `Hello, ${name}!`;
console.log(message);
}
Python
# Classes and decorators highlighted
@app.route('/api/data')
def get_data():
"""Fetch data endpoint"""
return {"status": "success"}
CSS
/* Properties and values clearly distinguished */
.container {
background-color: #faf9f5;
color: [#141413](https://github.com/TeoVoss/antzed-theme/issues/141413);
padding: 20px;
}
🎯 Supported Languages
Optimized syntax highlighting for:
- JavaScript / TypeScript
- Python
- HTML / CSS / SCSS
- JSON / YAML
- Markdown
- React / JSX
- Go
- Rust
- And many more...
🔧 Customization
You can customize specific colors in your settings.json:
{
"workbench.colorCustomizations": {
"[AntZed Light]": {
"editor.background": "#ffffff"
}
}
}
🗺️ Roadmap
- [ ] Dark theme variant
- [ ] High contrast variant
- [ ] Additional syntax highlighting improvements
- [ ] Jupyter Notebook optimizations
🤝 Contributing
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.
📄 License
MIT License - feel free to use this theme in any way you like!
🙏 Acknowledgments
- Color palette inspired by Anthropic's official brand guidelines
- Design philosophy influenced by Zed editor's minimalist approach
- UI Font: IBM Plex Sans by IBM
- Editor Font: Lelix
📧 Feedback
If you have any questions or suggestions, please create an issue on GitHub.
Made with ❤️ • Inspired by Claude and Zed