Files
oak-gpui/docs/src/themes.md
T
Marshall Bowers 15299dcf80 docs: Update "Themes" page (#11379)
This PR updates the "Themes" page in the docs to remove some outdated
copy.

Release Notes:

- N/A
2024-05-03 19:05:29 -04:00

30 lines
515 B
Markdown

# Themes
Zed comes with a number of built-in themes, with more themes available as extensions.
## Choosing a Theme
You can choose a theme in Zed a few ways:
- by pressing `CMD + K` then `CMD + T`
- by typing `theme` in the command palette
- by editing your `settings.json` with a specific theme name:
```json
{
"theme": "Ayu Mirage"
}
```
You can also use different themes based on system preferences:
```json
{
"theme": {
"mode": "system",
"light": "One Light",
"dark": "One Dark"
}
}
```