Skip to content

Commit eba00be

Browse files
committed
change color of data bytes on screen
1 parent 6f843b3 commit eba00be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/draw.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,8 @@ pub fn hex_str_with_style(v: String) -> String {
408408
let mut col = v.len() % 2;
409409
for c in v.chars() {
410410
if col > 1 {
411-
hex_u.push_str("\x1b[35m");
411+
hex_u.push_str("\x1b[100;97m");
412+
// hex_u.push_str("\x1b[35m");
412413
hex_u.push(c);
413414
hex_u.push_str("\x1b[0m");
414415
} else {

0 commit comments

Comments
 (0)