new color on info

This commit is contained in:
puckoprutt 2026-07-13 08:51:38 +02:00
parent f295787cc4
commit ac0227b7c6

View File

@ -301,7 +301,7 @@ impl Terminal {
/// prints a info message.
pub fn pp_info(data: &[u8]) {
Self::write(b"\x1B[1;37m[puckoprutt]\x1B[0m <- ");
Self::write(b"\x1B[1;34m[puckoprutt]\x1B[0m <- ");
Self::write(data);
Self::write(b"\r\n");
}