Skip to content

Commit b4400df

Browse files
author
Stephan Dilly
committed
Use terminal blue as default selection background (closes #129)
1 parent 19db19b commit b4400df

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
9+
### Changed
10+
- Use terminal blue as default selection background ([#129](https://github.com/extrawurst/gitui/issues/129))
11+
712
## [0.7.0] - 2020-06-15
813

914
### Added

Diff for: src/ui/style.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ impl Default for Theme {
241241
Self {
242242
selected_tab: Color::Yellow,
243243
command_fg: Color::White,
244-
selection_bg: Color::Rgb(0, 0, 100),
245-
cmdbar_extra_lines_bg: Color::Rgb(0, 0, 80),
244+
selection_bg: Color::Blue,
245+
cmdbar_extra_lines_bg: Color::Blue,
246246
disabled_fg: Color::DarkGray,
247247
diff_line_add: Color::Green,
248248
diff_line_delete: Color::Red,
@@ -251,7 +251,7 @@ impl Default for Theme {
251251
diff_file_moved: Color::LightMagenta,
252252
diff_file_modified: Color::Yellow,
253253
commit_hash: Color::Magenta,
254-
commit_time: Color::Rgb(110, 110, 255),
254+
commit_time: Color::LightCyan,
255255
commit_author: Color::Green,
256256
danger_fg: Color::Red,
257257
}

0 commit comments

Comments
 (0)