Make the highlight bar less subtle.

- It had been tuned when colors weren't working correctly.
This commit is contained in:
Andrew Hamilton 2019-10-17 17:36:30 +10:00
parent ab2ede416d
commit cde7402708

View file

@ -379,7 +379,7 @@ class Summary:
scroll_x, scroll_y = self._view_widget.position
highlighted_y = cursor_y - scroll_y
appearance[highlighted_y] = (highlight_str(
appearance[highlighted_y][:-1], termstr.Color.white, 0.85)
appearance[highlighted_y][:-1], termstr.Color.white, 0.8)
+ appearance[highlighted_y][-1])
return appearance