16 lines
319 B
C++
16 lines
319 B
C++
#ifndef BIT_COLORS_HPP
|
|
#define BIT_COLORS_HPP
|
|
|
|
#define RESET "\033[0m"
|
|
#define BLACK "\033[30m"
|
|
#define RED "\033[31m"
|
|
#define GREEN "\033[32m"
|
|
#define YELLOW "\033[33m"
|
|
#define BLUE "\033[34m"
|
|
#define MAGENTA "\033[35m"
|
|
#define CYAN "\033[36m"
|
|
#define WHITE "\033[37m"
|
|
#define BOLD "\033[1m"
|
|
|
|
#endif //BIT_COLORS_HPP
|