diff --git a/src/commands/list.rs b/src/commands/list.rs index 533337a..b130bb8 100644 --- a/src/commands/list.rs +++ b/src/commands/list.rs @@ -46,8 +46,8 @@ pub fn list(matches: &ArgMatches<'_>, api: &mut API) -> Result<(), Box return Err(Box::new(APIError::BadFormat)), }; let subject_line = format!("{} ({})", display_name, name); - println!("{}", &subject_line); - println!("{}", "=".repeat(subject_line.len())); + println!("\n\x1B[36m{}\x1B[0m", &subject_line); + println!("\x1B[36m{}\x1B[0m", "=".repeat(subject_line.len())); let slots: &Vec = match machine["slots"].as_array() { Some(slots) => slots, None => return Err(Box::new(APIError::BadFormat)), @@ -66,9 +66,10 @@ pub fn list(matches: &ArgMatches<'_>, api: &mut API) -> Result<(), Box