diff --git a/zed/assets/themes/_base.toml b/zed/assets/themes/_base.toml index 1a2999379c..3bb2bfc006 100644 --- a/zed/assets/themes/_base.toml +++ b/zed/assets/themes/_base.toml @@ -120,6 +120,14 @@ underline = true extends = "$chat_panel.sign_in_prompt" color = "$text.1.color" +[people_panel] +host_username = "$text.0" +worktree_host_avatar = { corner_radius = 10 } +worktree_guest_avatar = { corner_radius = 8 } + +[people_panel.worktree_name] +extends = "$text.0" + [selector] background = "$surface.0" padding = 8 diff --git a/zed/src/people_panel.rs b/zed/src/people_panel.rs index 38673edefd..7d935c714e 100644 --- a/zed/src/people_panel.rs +++ b/zed/src/people_panel.rs @@ -61,7 +61,7 @@ impl PeoplePanel { .with_child( Label::new( collaborator.user.github_login.clone(), - theme.people_panel.collaborator_username.clone(), + theme.people_panel.host_username.clone(), ) .boxed(), ) diff --git a/zed/src/theme.rs b/zed/src/theme.rs index 38c93db14b..46c66df82c 100644 --- a/zed/src/theme.rs +++ b/zed/src/theme.rs @@ -108,7 +108,7 @@ pub struct ChatPanel { pub struct PeoplePanel { #[serde(flatten)] pub container: ContainerStyle, - pub collaborator_username: TextStyle, + pub host_username: TextStyle, pub worktree_name: ContainedText, pub worktree_host_avatar: ImageStyle, pub worktree_guest_avatar: ImageStyle,