1# Themes
2
3Zed comes with a number of built-in themes, with more themes available as extensions.
4
5## Choosing a Theme
6
7You can choose a theme in Zed a few ways:
8
9- by pressing `CMD + K` then `CMD + T`
10- by typing `theme` in the command palette
11- by editing your `settings.json` with a specific theme name:
12
13```json
14{
15 "theme": "Ayu Mirage"
16}
17```
18
19You can also use different themes based on system preferences:
20
21```json
22{
23 "theme": {
24 "mode": "system",
25 "light": "One Light",
26 "dark": "One Dark"
27 }
28}
29```