From 0167758727b13bebd133644f3aa75a48d006608d Mon Sep 17 00:00:00 2001 From: David Neto Date: Thu, 24 Aug 2017 10:34:00 -0400 Subject: [PATCH] Windows: Increase intensity of blue text --- source/print.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/print.cpp b/source/print.cpp index 8abbf12..8d70ea0 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 ""; } -- 2.7.4