summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-04-09 15:57:54 -0400
committerGitHub <noreply@github.com>2021-04-09 15:57:54 -0400
commit8c7e85b923a7c94e9425f6670d1051de1ebe8f17 (patch)
tree84c0f347c5c2b5856642c7085474ff81a6ab1e16 /src
parentedb29a43b92a1866c809267ffd774ddc1a000015 (diff)
change: Tweak default light colour scheme (#450)
Removes/tweaks some really light colours that might cause issues with a white background. For example, yellow on white didn't look so great, so I adjusted the memory/rx colours for this mode.
Diffstat (limited to 'src')
-rw-r--r--src/constants.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/constants.rs b/src/constants.rs
index c9afbeea..932a66f5 100644
--- a/src/constants.rs
+++ b/src/constants.rs
@@ -43,6 +43,21 @@ pub static DEFAULT_LIGHT_MODE_COLOUR_PALETTE: Lazy<ConfigColours> = Lazy::new(||
selected_text_color: Some("white".to_string()),
graph_color: Some("black".to_string()),
disabled_text_color: Some("gray".to_string()),
+ ram_color: Some("blue".to_string()),
+ swap_color: Some("red".to_string()),
+ rx_color: Some("blue".to_string()),
+ tx_color: Some("red".to_string()),
+ rx_total_color: Some("LightBlue".to_string()),
+ tx_total_color: Some("LightRed".to_string()),
+ cpu_core_colors: Some(vec![
+ "LightMagenta".to_string(),
+ "LightBlue".to_string(),
+ "LightRed".to_string(),
+ "Cyan".to_string(),
+ "Green".to_string(),
+ "Blue".to_string(),
+ "Red".to_string(),
+ ]),
..ConfigColours::default()
});