memgraph/utils/bash_colors.hpp
2015-12-07 21:51:55 +01:00

11 lines
188 B
C++

#pragma once
namespace bash_color
{
auto blue = "\033[94m";
auto green = "\033[92m";
auto yellow = "\033[93m";
auto red = "\033[91m";
auto end = "\033[0m";
}