We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b73b200 commit 07f5d69Copy full SHA for 07f5d69
CHANGELOG.md
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
10
## Fixed
11
- appropriate error message when pulling deleted remote branch ([#911](https://github.com/extrawurst/gitui/issues/991))
12
+- improved color contrast in branches popup for light themes ([#922](https://github.com/extrawurst/gitui/issues/922))
13
14
## [0.17.1] - 2021-09-10
15
src/ui/style.rs
@@ -84,7 +84,11 @@ impl Theme {
84
};
85
86
if selected {
87
- branch.patch(Style::default().bg(self.selection_bg))
+ branch.patch(
88
+ Style::default()
89
+ .fg(self.command_fg)
90
+ .bg(self.selection_bg),
91
+ )
92
} else {
93
branch
94
}
0 commit comments