From: David Neto Date: Thu, 24 Aug 2017 14:34:00 +0000 (-0400) Subject: Windows: Increase intensity of blue text X-Git-Tag: submit/tizen/20180425.094529~1^2~393 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0167758727b13bebd133644f3aa75a48d006608d;p=platform%2Fupstream%2FSPIRV-Tools.git Windows: Increase intensity of blue text --- diff --git a/source/print.cpp b/source/print.cpp index 8abbf123..8d70ea00 100644 --- a/source/print.cpp +++ b/source/print.cpp @@ -80,7 +80,10 @@ clr::yellow::operator const char*() { } clr::blue::operator const char*() { - SetConsoleForegroundColor(FOREGROUND_BLUE); + // Blue all by itself is hard to see against a black background (the + // default on command shell), or a medium blue background (the default + // on PowerShell). So increase its intensity. + SetConsoleForegroundColor(FOREGROUND_BLUE | FOREGROUND_INTENSITY); return ""; }