Refine ported Zed1 themes (#3804)

This PR applies another round of refinements to the ported Zed1 themes.

Most of this was focused around the coloration of UI text to better
match Zed1.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers
2023-12-22 21:49:27 -05:00
committed by GitHub
13 changed files with 173 additions and 165 deletions
+3
View File
@@ -381,6 +381,7 @@ impl Pane {
.child(
IconButton::new("plus", Icon::Plus)
.icon_size(IconSize::Small)
.icon_color(Color::Muted)
.on_click(cx.listener(|pane, _, cx| {
let menu = ContextMenu::build(cx, |menu, _| {
menu.action("New File", NewFile.boxed_clone())
@@ -402,6 +403,7 @@ impl Pane {
.child(
IconButton::new("split", Icon::Split)
.icon_size(IconSize::Small)
.icon_color(Color::Muted)
.on_click(cx.listener(|pane, _, cx| {
let menu = ContextMenu::build(cx, |menu, _| {
menu.action("Split Right", SplitRight.boxed_clone())
@@ -422,6 +424,7 @@ impl Pane {
let zoomed = pane.is_zoomed();
IconButton::new("toggle_zoom", Icon::Maximize)
.icon_size(IconSize::Small)
.icon_color(Color::Muted)
.selected(zoomed)
.selected_icon(Icon::Minimize)
.on_click(cx.listener(|pane, _, cx| {