Start work on creating gpui2 version of project panel (#3299)

I'm gonna land what I have, even though some features aren't ported yet,
since we're working on all of this code so actively.

* [x] get the basic structure compiling
* [x] get the panel laying out correctly
* [ ] rename / new file editor
* [ ] enable the tests
* [ ] drag and drop
* [ ] context menu
This commit is contained in:
Max Brunsfeld 2023-11-14 09:56:46 -08:00 committed by GitHub
commit c7d80c7aac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 646 additions and 552 deletions

View file

@ -293,7 +293,16 @@ pub fn blue() -> Hsla {
pub fn green() -> Hsla {
Hsla {
h: 0.3,
h: 0.33,
s: 1.,
l: 0.5,
a: 1.,
}
}
pub fn yellow() -> Hsla {
Hsla {
h: 0.16,
s: 1.,
l: 0.5,
a: 1.,