#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