From 07f5d69a4862db6c2cb7d44d0599e2ec3e507c61 Mon Sep 17 00:00:00 2001 From: Scott Reeves <327943+Cottser@users.noreply.github.com> Date: Wed, 29 Sep 2021 10:03:08 -0400 Subject: Improve contrast in branch popup for selected branch --- src/ui/style.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/ui') diff --git a/src/ui/style.rs b/src/ui/style.rs index 4e8d1ed1..7892304c 100644 --- a/src/ui/style.rs +++ b/src/ui/style.rs @@ -84,7 +84,11 @@ impl Theme { }; if selected { - branch.patch(Style::default().bg(self.selection_bg)) + branch.patch( + Style::default() + .fg(self.command_fg) + .bg(self.selection_bg), + ) } else { branch } -- cgit v1.2.3