From f8ea0db2d71e17419c8a7f87df06bf32eb5806e7 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 1072a166f5..56f455bc4d 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,