Files
oak-gpui/crates/util/src
Marshall Bowers 9cb5a84b8d Add support for loading user themes (#7027)
This PR adds support for loading user themes in Zed.

Themes are loaded from the `themes` directory under the Zed config:
`~/.config/zed/themes`. This directory should contain JSON files
containing a `ThemeFamilyContent`.

Here's an example of the general structure of a theme family file:

```jsonc
{
  "name": "Vitesse",
  "author": "Anthony Fu",
  "themes": [
    {
      "name": "Vitesse Dark Soft",
      "appearance": "dark",
      "style": {
        "border": "#252525",
        // ...
      }
    }
  ]
}
```

Themes placed in this directory will be loaded and available in the
theme selector.

Release Notes:

- Added support for loading user themes from `~/.config/zed/themes`.
2024-01-29 21:32:45 -05:00
..
2023-04-20 15:25:11 -06:00
WIP
2023-12-05 19:27:15 +01:00
2023-11-27 12:40:59 -07:00
2023-03-28 09:41:59 -07:00
2024-01-25 11:23:28 -08:00
2024-01-20 23:23:52 -05:00
2024-01-24 17:58:09 +00:00