portingtools/src/ansi.hpp
2022-11-09 23:55:33 +01:00

10 lines
211 B
C++

#pragma once
namespace ansi {
inline const char* reset = "\033[0m";
inline const char* cyan = "\033[0;36m";
inline const char* green = "\033[0;32m";
inline const char* yellow = "\033[0;33m";
}