Color matches bright magenta.

This commit is contained in:
tastytea 2021-05-25 11:00:05 +02:00
parent d3c3062cc0
commit b72d3f3420
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 5 additions and 2 deletions

View File

@ -21,6 +21,7 @@
#include <boost/locale/message.hpp>
#include <boost/program_options/errors.hpp>
#include <boost/program_options/variables_map.hpp>
#include <termcolor/termcolor.hpp>
#include <clocale>
#include <cstdint>
@ -124,8 +125,10 @@ int main(int argc, char *argv[])
{
cout << ", page " << match.page;
}
cout << ": " << match.context.first << match.text
<< match.context.second << '\n';
cout << ": " << match.context.first
<< termcolor::bright_magenta << match.text
<< termcolor::reset << match.context.second
<< '\n';
}
}
catch (const std::exception &e)