1234567891011121314151617181920212223242526272829303132 |
- #ifndef __COLOR_ANSI_
- #define NONE "\033[m"
- #define RED "\033[0;41;32m" //error
- #define LIGHT_RED "\033[1;41m"
- #define GREEN "\033[0;42;33m" //ci send
- #define LIGHT_GREEN "\033[1;42m"
- #define BLUE "\033[0;44;35m" //ci notify
- #define LIGHT_BLUE "\033[1;44m"
- #define DARY_GRAY "\033[1;40m"
- #define CYAN "\033[0;46m" //info
- #define LIGHT_CYAN "\033[1;46m"
- #define PURPLE "\033[0;45m" //test
- #define LIGHT_PURPLE "\033[1;45m"
- #define BROWN "\033[0;43m"
- #define YELLOW "\033[1;43m" //warning
- #define LIGHT_GRAY "\033[0;47m"
- #define WHITE "\033[1;47m"
- #define RED_FONT "\033[0;31m"
- #define GREEN_FONT "\033[0;32m"
- #define BLUE_FONT "\033[0;34m"
- #define GRAY_FONT "\033[0;30m"
- #define CYAN_FONT "\033[0;36m"
- #define PURPLE_FONT "\033[0;35m"
- #define YELLOW_FONT "\033[1;33m"
- #define ATTR_CLOSE "\33[0m"
- #define ATTR_UNDERLINE "\33[4m"
- #define ATTR_FLASH "\33[5m"
- #define ATTR_REFLACT "\33[7m"
- #define ATTR_REVEAL "\33[8m"
- #endif
|