Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>AntZedNew to Visual Studio Code? Get it now.
AntZed

AntZed

TeoVoss

|
5 installs
| (0) | Free
A warm light theme inspired by Anthropic's brand colors and Zed's minimalist design. Dark theme coming soon.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

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

  1. Open VS Code
  2. Go to Extensions (Cmd+Shift+X or Ctrl+Shift+X)
  3. Search for "AntZed"
  4. Click Install
  5. Press Cmd+K Cmd+T (macOS) or Ctrl+K Ctrl+T (Windows/Linux)
  6. Select "AntZed Light" from the list

From Source

  1. Clone or download this repository
  2. Copy the anthropic-light-theme folder to your VS Code extensions directory:
    • Windows: %USERPROFILE%\.vscode\extensions
    • macOS/Linux: ~/.vscode/extensions
  3. Restart VS Code
  4. Open Command Palette (Cmd+Shift+P or Ctrl+Shift+P)
  5. 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)

  1. Install Custom CSS and JS Loader extension
  2. Add to your settings.json:
{
  "vscode_custom_css.imports": [
    "file://${userHome}/.vscode/extensions/antzed-theme/anthropic-vscode-custom.css"
  ]
}
  1. Press Cmd+Shift+P (macOS) or Ctrl+Shift+P (Windows/Linux)
  2. Run Enable Custom CSS and JS
  3. 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:

  1. Press Cmd+K Cmd+T (macOS) or Ctrl+K Ctrl+T (Windows/Linux)
  2. Select "AntZed Light" from the list

Option 2:

  1. Press Cmd+Shift+P (macOS) or Ctrl+Shift+P (Windows/Linux)
  2. Type "Color Theme"
  3. 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

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft