portingtools/src/ansi.hpp

10 lines
211 B
C++
Raw Normal View History

2022-11-09 16:09:13 +01:00
#pragma once
namespace ansi {
2022-11-09 22:02:26 +01:00
inline const char* reset = "\033[0m";
2022-11-09 16:09:13 +01:00
2022-11-09 22:02:26 +01:00
inline const char* cyan = "\033[0;36m";
inline const char* green = "\033[0;32m";
inline const char* yellow = "\033[0;33m";
}