docs/src/appearance.md
Customize Zed's visual appearance to match your preferences. This guide covers themes, fonts, icons, and other visual settings.
For information on how the settings system works, see All Settings.
Here's how to make Zed feel like home:
Pick a theme: Press {#kb theme_selector::Toggle} to open the Theme Selector. Arrow through the list to preview themes in real time, and press Enter to apply.
Toggle light/dark mode quickly: Press {#kb theme::ToggleMode}. If you currently use a static "theme": "..." value, the first toggle converts it to dynamic mode settings with default themes.
Choose an icon theme: Run icon theme selector: toggle from the command palette to browse icon themes.
Set your font: Open the Settings Editor with {#kb zed::OpenSettings} and search for buffer_font_family. Set it to your preferred coding font.
Adjust font size: In the same Settings Editor, search for buffer_font_size and ui_font_size to tweak the editor and interface text sizes.
That's it. You now have a personalized Zed setup.
Install themes from the Extensions page ({#action zed::Extensions}), then switch between them with the Theme Selector ({#kb theme_selector::Toggle}).
Zed supports separate themes for light and dark mode with automatic switching based on your system preference:
{
"theme": {
"mode": "system",
"light": "One Light",
"dark": "One Dark"
}
}
You can also override specific theme attributes for fine-grained control.
Customize file and folder icons in the Project Panel and tabs. Browse available icon themes with the Icon Theme Selector (icon theme selector: toggle in the command palette).
Like color themes, icon themes support separate light and dark variants:
{
"icon_theme": {
"mode": "system",
"light": "Zed (Default)",
"dark": "Zed (Default)"
}
}
Zed uses three font settings for different contexts:
| Setting | Used for |
|---|---|
buffer_font_family | Editor text |
ui_font_family | Interface elements |
terminal.font_family | Terminal |
Example configuration:
{
"buffer_font_family": "JetBrains Mono",
"buffer_font_size": 14,
"ui_font_family": "Inter",
"ui_font_size": 16,
"terminal": {
"font_family": "JetBrains Mono",
"font_size": 14
}
}
To disable font ligatures:
{
"buffer_font_features": {
"calt": false
}
}
Adjust line spacing with buffer_line_height:
"comfortable" — 1.618 ratio (default)"standard" — 1.3 ratio{ "custom": 1.5 } — Custom ratioZed provides extensive control over UI elements including:
→ Visual Customization documentation for all UI element settings