aboutsummaryrefslogtreecommitdiffstats
path: root/src/colors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/colors.rs')
-rw-r--r--src/colors.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/colors.rs b/src/colors.rs
index ff6ed86..2db944c 100644
--- a/src/colors.rs
+++ b/src/colors.rs
@@ -30,6 +30,9 @@ impl Colors {
pub fn new(shell_type: ShellType) -> Colors {
let mut color_map = std::collections::HashMap::new();
+ color_map.insert(String::from("path_not_writable"), term::color::YELLOW);
+ color_map.insert(String::from("path_not_exist"), term::color::RED);
+
color_map.insert(String::from("battery_warn"), term::color::YELLOW);
color_map.insert(String::from("battery_crit"), term::color::RED);
color_map.insert(String::from("battery_emerg"), term::color::BRIGHT_RED);