Skip to content

Commit 962dc42

Browse files
committed
bold logo by default
1 parent 58a15c9 commit 962dc42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -276,11 +276,11 @@ fn colorize_str(line: &str, colors: Vec<Color>) -> (String, usize) {
276276
Some(&c) => c,
277277
None => Color::White,
278278
};
279-
acc.push_str(&format!("{}", s.color(c)));
279+
acc.push_str(&format!("{}", s.color(c).bold()));
280280
}
281281
acc
282282
});
283-
(out_str, colors_in_str.len() * 9)
283+
(out_str, colors_in_str.len() * 11 )
284284
}
285285

286286
/// Returns the true length of a string after substracting the {n}

0 commit comments

Comments
 (0)