From 60a01b63750374223649958be77b96358ac6882c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sun, 2 Oct 2022 11:23:32 +0200 Subject: [PATCH] Use LightGrey for the skip colour This isn't great, but is better than the deep blue that was borderline invisible on dark backgrounds. The fix is to redo the colouring a bit, including introducing light-blue that is actually visible. --- src/catch2/internal/catch_console_colour.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/catch2/internal/catch_console_colour.hpp b/src/catch2/internal/catch_console_colour.hpp index 8ee808cc2c..d914431574 100644 --- a/src/catch2/internal/catch_console_colour.hpp +++ b/src/catch2/internal/catch_console_colour.hpp @@ -47,7 +47,7 @@ namespace Catch { Error = BrightRed, Success = Green, - Skip = Blue, + Skip = LightGrey, OriginalExpression = Cyan, ReconstructedExpression = BrightYellow,