mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-26 23:24:20 +02:00
change: highlight borders & table headers to cyan (#115)
This commit is contained in:
parent
ac8dabb2af
commit
bcfd09da88
@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## Unreleased
|
## [0.4.0] - Unreleased
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
||||||
@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
- [#114](https://github.com/ClementTsang/bottom/pull/114): Process state per process
|
- [#114](https://github.com/ClementTsang/bottom/pull/114): Process state per process
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
|
||||||
|
- Changed default colours for highlighted borders and table headers to cyan - this is mostly to deal with Powershell colour conflicts.
|
||||||
|
|
||||||
## [0.3.0] - 2020-04-07
|
## [0.3.0] - 2020-04-07
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
@ -34,7 +34,7 @@ impl Default for CanvasColours {
|
|||||||
currently_selected_text_colour: Color::Black,
|
currently_selected_text_colour: Color::Black,
|
||||||
currently_selected_bg_colour: Color::Cyan,
|
currently_selected_bg_colour: Color::Cyan,
|
||||||
currently_selected_text_style: Style::default().fg(Color::Black).bg(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),
|
ram_style: Style::default().fg(STANDARD_FIRST_COLOUR),
|
||||||
swap_style: Style::default().fg(STANDARD_SECOND_COLOUR),
|
swap_style: Style::default().fg(STANDARD_SECOND_COLOUR),
|
||||||
rx_style: Style::default().fg(STANDARD_FIRST_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),
|
avg_colour_style: Style::default().fg(AVG_COLOUR),
|
||||||
cpu_colour_styles: Vec::new(),
|
cpu_colour_styles: Vec::new(),
|
||||||
border_style: Style::default().fg(text_colour),
|
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),
|
text_style: Style::default().fg(text_colour),
|
||||||
widget_title_style: Style::default().fg(text_colour),
|
widget_title_style: Style::default().fg(text_colour),
|
||||||
graph_style: Style::default().fg(text_colour),
|
graph_style: Style::default().fg(text_colour),
|
||||||
|
@ -158,7 +158,7 @@ pub const DEFAULT_CONFIG_CONTENT: &str = r##"
|
|||||||
[colors]
|
[colors]
|
||||||
|
|
||||||
# Represents the colour of table headers (processes, CPU, disks, temperature).
|
# 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.
|
# Represents the colour of the label each widget has.
|
||||||
#widget_title_color="Gray"
|
#widget_title_color="Gray"
|
||||||
@ -185,7 +185,7 @@ pub const DEFAULT_CONFIG_CONTENT: &str = r##"
|
|||||||
#border_color="Gray"
|
#border_color="Gray"
|
||||||
|
|
||||||
# Represents the colour of the border of selected widgets.
|
# Represents the colour of the border of selected widgets.
|
||||||
#highlighted_border_color="LightBlue"
|
#highlighted_border_color="Cyan"
|
||||||
|
|
||||||
# Represents the colour of most text.
|
# Represents the colour of most text.
|
||||||
#text_color="Gray"
|
#text_color="Gray"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user