00001 #ifndef ASCII_COLORS_H
00002 #define ASCII_COLORS_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include <stdarg.h>
00024 #include <stdio.h>
00025
00026 #define ASC_RESET "\e[0;0m"
00027 #define ASC_BLACK "\e[0;30m"
00028 #define ASC_BLUE "\e[0;34m"
00029 #define ASC_GREEN "\e[0;32m"
00030 #define ASC_CYAN "\e[0;36m"
00031 #define ASC_RED "\e[0;31m"
00032 #define ASC_PURPLE "\e[0;35m"
00033 #define ASC_BROWN "\e[0;33m"
00034 #define ASC_GRAY "\e[0;37m"
00035 #define ASC_DGRAY "\e[1;30m"
00036 #define ASC_LBLUE "\e[1;34m"
00037 #define ASC_LGREEN "\e[1;32m"
00038 #define ASC_LCYAN "\e[1;36m"
00039 #define ASC_LRED "\e[1;31m"
00040 #define ASC_LPRUPLE "\e[1;35m"
00041 #define ASC_YELLOW "\e[1;33m"
00042 #define ASC_WHITE "\e[1;37m"
00043
00044 #endif