diff --git a/cli/app.rs b/cli/app.rs index 9caa3a6ad..a6cd6d03e 100644 --- a/cli/app.rs +++ b/cli/app.rs @@ -728,7 +728,9 @@ impl<'a> Limbo<'a> { let header = (0..rows.num_columns()) .map(|i| { let name = rows.get_column_name(i); - Cell::new(name).add_attribute(Attribute::Bold) + Cell::new(name) + .add_attribute(Attribute::Bold) + .fg(comfy_table::Color::AnsiValue(49)) // Green color for headers }) .collect::>(); table.set_header(header);