mindustry logic execution, map- and schematic- parsing and rendering
| -rw-r--r-- | lemu/Cargo.toml | 2 | ||||
| -rw-r--r-- | lemu/src/parser.rs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lemu/Cargo.toml b/lemu/Cargo.toml index df6d6c5..f4715bc 100644 --- a/lemu/Cargo.toml +++ b/lemu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lemu" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "M-LOG runner" authors = ["bend-n <[email protected]>"] diff --git a/lemu/src/parser.rs b/lemu/src/parser.rs index 04305ad..cef379e 100644 --- a/lemu/src/parser.rs +++ b/lemu/src/parser.rs @@ -203,9 +203,9 @@ impl Error<'_> { }; let error = "error".red(); - let note = "note".yellow(); - let help = "help".bright_green(); - let e_sty = Style::new().bright_red(); + let note = "note".blue(); + let help = "help".green(); + let e_sty = Style::new().red(); macro_rules! err { ($span:expr, $msg:literal $(, $args:expr)* $(,)?) => { Label::styled(SourceSpan::new($span.start as u32, $span.end as u32), format!($msg $(, $args)*), e_sty) |