From 71c6f813098a4e51344b7968022bbd946bad37be Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Wed, 20 Apr 2016 16:08:51 -0400 Subject: [PATCH] change errors from Yellow to Magenta The Yellow text is very hard to read with a white background. --- src/libsyntax/errors/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsyntax/errors/mod.rs b/src/libsyntax/errors/mod.rs index abbc4eef7bf..0de2e067802 100644 --- a/src/libsyntax/errors/mod.rs +++ b/src/libsyntax/errors/mod.rs @@ -661,7 +661,7 @@ impl Level { fn color(self) -> term::color::Color { match self { Bug | Fatal | PhaseFatal | Error => term::color::BRIGHT_RED, - Warning => term::color::BRIGHT_YELLOW, + Warning => term::color::BRIGHT_MAGENTA, Note => term::color::BRIGHT_GREEN, Help => term::color::BRIGHT_CYAN, Cancelled => unreachable!(),