memgraph/utils/bash_colors.hpp

14 lines
261 B
Bash
Raw Normal View History

#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