change: highlight borders & table headers to cyan (#115)

This commit is contained in:
Clement Tsang
2020-04-12 18:27:58 -04:00
committed by GitHub
parent ac8dabb2af
commit bcfd09da88
3 changed files with 9 additions and 5 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ impl Default for CanvasColours {
currently_selected_text_colour: Color::Black,
currently_selected_bg_colour: Color::Cyan,
currently_selected_text_style: Style::default().fg(Color::Black).bg(Color::Cyan),
table_header_style: Style::default().fg(Color::LightBlue),
table_header_style: Style::default().fg(Color::Cyan),
ram_style: Style::default().fg(STANDARD_FIRST_COLOUR),
swap_style: Style::default().fg(STANDARD_SECOND_COLOUR),
rx_style: Style::default().fg(STANDARD_FIRST_COLOUR),
@@ -44,7 +44,7 @@ impl Default for CanvasColours {
avg_colour_style: Style::default().fg(AVG_COLOUR),
cpu_colour_styles: Vec::new(),
border_style: Style::default().fg(text_colour),
highlighted_border_style: Style::default().fg(Color::LightBlue),
highlighted_border_style: Style::default().fg(Color::Cyan),
text_style: Style::default().fg(text_colour),
widget_title_style: Style::default().fg(text_colour),
graph_style: Style::default().fg(text_colour),
+2 -2
View File
@@ -158,7 +158,7 @@ pub const DEFAULT_CONFIG_CONTENT: &str = r##"
[colors]
# Represents the colour of table headers (processes, CPU, disks, temperature).
#table_header_color="LightBlue"
#table_header_color="Cyan"
# Represents the colour of the label each widget has.
#widget_title_color="Gray"
@@ -185,7 +185,7 @@ pub const DEFAULT_CONFIG_CONTENT: &str = r##"
#border_color="Gray"
# Represents the colour of the border of selected widgets.
#highlighted_border_color="LightBlue"
#highlighted_border_color="Cyan"
# Represents the colour of most text.
#text_color="Gray"