icon-themes.md

 1# Icon Themes
 2
 3Zed comes with a built-in icon theme, with more icon themes available as extensions.
 4
 5## Selecting an Icon Theme
 6
 7See what icon themes are installed and preview them via the Icon Theme Selector, which you can open from the command palette with "icon theme selector: toggle".
 8
 9Navigating through the icon theme list by moving up and down will change the icon theme in real time and hitting enter will save it to your settings file.
10
11## Installing more Icon Themes
12
13More icon themes are available from the Extensions page, which you can access via the command palette with "zed: Extensions" or the [Zed website](https://zed.dev/extensions).
14
15## Configuring Icon Themes
16
17Your selected icon theme is stored in your settings file. You can open your settings file from the command palette with "zed: open settings" (bound to `cmd-,` on macOS and `ctrl-,` on Linux).
18
19Just like with themes, Zed allows for configuring different icon themes for light and dark mode. You can set the mode to `"light"` or `"dark"` to ignore the current system mode.
20
21```json [settings]
22{
23  "icon_theme": {
24    "mode": "system",
25    "light": "Light Icon Theme",
26    "dark": "Dark Icon Theme"
27  }
28}
29```
30
31## Icon Theme Development
32
33See: [Developing Zed Icon Themes](./extensions/icon-themes.md)