From af6744b112cfbd14f7df226bdfa98c0ddbe070aa Mon Sep 17 00:00:00 2001 From: gabime Date: Thu, 20 Jun 2019 01:00:50 +0300 Subject: [PATCH] Fixed color --- include/spdlog/sinks/ansicolor_sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/sinks/ansicolor_sink.h b/include/spdlog/sinks/ansicolor_sink.h index 3b8cc898..e1d5f7e4 100644 --- a/include/spdlog/sinks/ansicolor_sink.h +++ b/include/spdlog/sinks/ansicolor_sink.h @@ -73,7 +73,7 @@ public: /// Bold colors const string_view_t yellow_bold = "\033[33m\033[1m"; const string_view_t red_bold = "\033[31m\033[1m"; - const string_view_t bold_on_red = "\033[1m\033[31m"; + const string_view_t bold_on_red = "\033[1m\033[41m"; private: FILE *target_file_;