Re-added blue color, with corrected 94m code

This commit is contained in:
Josh Goldberg 2017-12-04 22:28:56 -08:00
parent ff7510dc92
commit 98b64db811

View File

@ -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;
}
}