24constexpr const std::string ESC = 
"\x1B";
 
   26constexpr const std::string ESC = 
"\033";
 
   33using LogStyleMap = std::map<LogLevel, std::string>;
 
   36inline LogStyleMap defaultStyles()
 
   38    using enum cli::logging::LogLevel;
 
   40        {TRACE, ESC + 
"[90m"},   
 
   41        {VERBOSE, ESC + 
"[90m"}, 
 
   42        {DEBUG, ESC + 
"[36m"},   
 
   44        {SUCCESS, ESC + 
"[32m"}, 
 
   45        {WARNING, ESC + 
"[33m"}, 
 
   46        {ERROR, ESC + 
"[31m"},