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?filter=icon-themes).
14
15## Configuring Icon Themes
16
17Your selected icon theme is stored in your settings file.
18You can open your settings file from the command palette with {#action zed::OpenSettingsFile} (bound to {#kb zed::OpenSettingsFile}).
19
20Just like with themes, Zed allows for configuring different icon themes for light and dark mode.
21You can set the mode to `"light"` or `"dark"` to ignore the current system mode.
22
23```json [settings]
24{
25 "icon_theme": {
26 "mode": "system",
27 "light": "Light Icon Theme",
28 "dark": "Dark Icon Theme"
29 }
30}
31```
32
33## Icon Theme Development
34
35See: [Developing Zed Icon Themes](./extensions/icon-themes.md)