memgraph/utils/bash_colors.hpp
2015-10-06 23:15:48 +02:00

14 lines
261 B
C++

#ifndef MEMGRAPH_UTILS_BASH_COLORS_HPP
#define MEMGRAPH_UTILS_BASH_COLORS_HPP
namespace bash_color
{
auto blue = "\033[94m";
auto green = "\033[92m";
auto yellow = "\033[93m";
auto red = "\033[91m";
auto end = "\033[0m";
}
#endif