From 98b64db811b01302c550783b72fdc4840db468ac Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Mon, 4 Dec 2017 22:28:56 -0800 Subject: [PATCH] Re-added blue color, with corrected 94m code --- src/compiler/program.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/compiler/program.ts b/src/compiler/program.ts index 4c743ce89d0..6dfd63cb9d3 100755 --- a/src/compiler/program.ts +++ b/src/compiler/program.ts @@ -246,6 +246,7 @@ namespace ts { grey: "\u001b[90m", red: "\u001b[91m", yellow: "\u001b[93m", + blue: "\u001b[94m", cyan: "\u001b[96m" }; const gutterStyleSequence = "\u001b[30;47m"; @@ -256,7 +257,7 @@ namespace ts { switch (category) { case DiagnosticCategory.Warning: return foregroundColorEscapeSequences.yellow; case DiagnosticCategory.Error: return foregroundColorEscapeSequences.red; - case DiagnosticCategory.Message: return foregroundColorEscapeSequences.yellow; + case DiagnosticCategory.Message: return foregroundColorEscapeSequences.blue; } }