From 929c0e6fa612629c7bc3d0ec2fd1e85cb35ea565 Mon Sep 17 00:00:00 2001 From: PancakeTAS Date: Fri, 4 Jul 2025 17:55:28 +0200 Subject: [PATCH] fix: use a readable log color --- include/log.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/log.hpp b/include/log.hpp index 7327eba..c249833 100644 --- a/include/log.hpp +++ b/include/log.hpp @@ -9,7 +9,7 @@ namespace Log { const std::string_view WHITE = "\033[1;37m"; const std::string_view YELLOW = "\033[1;33m"; const std::string_view RED = "\033[1;31m"; - const std::string_view GRAY = "\033[1;30m"; + const std::string_view GRAY = "\033[1;90m"; const std::string_view RESET = "\033[0m"; template