fix: use a readable log color

This commit is contained in:
PancakeTAS 2025-07-04 17:55:28 +02:00
parent bc5a63b8b7
commit 929c0e6fa6
No known key found for this signature in database

View file

@ -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<typename... Args>