Advertisement
Madmouse

colors.h

Feb 6th, 2015
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.19 KB | None | 0 0
  1. // ------------------------------------------------------------------------------
  2. // THE BEER-WARE LICENSE (Revision 43):
  3. // <aaronryool@gmail.com> wrote this file. As long as you retain this notice you
  4. // can do whatever you want with this stuff. If we meet some day, and you think
  5. // this stuff is worth it, you can buy me a beer in return
  6. // ------------------------------------------------------------------------------
  7.  
  8.  
  9. // Reset
  10. #define RESET       "\033[0m"
  11.  
  12. // Regular Colors
  13. #define BLACK       "\033[030m"
  14. #define RED     "\033[031m"
  15. #define GREEN       "\033[032m"
  16. #define YELLOW      "\033[033m"
  17. #define BLUE        "\033[034m"
  18. #define PURPLE      "\033[035m"
  19. #define CYAN        "\033[036m"
  20. #define WHITE       "\033[037m"
  21.  
  22. // Bold
  23. #define BBLACK      "\033[130m"
  24. #define BRED        "\033[131m"
  25. #define BGREEN      "\033[132m"
  26. #define BYELLOW     "\033[133m"
  27. #define BBLUE       "\033[134m"
  28. #define BPURPLE     "\033[135m"
  29. #define BCYAN       "\033[136m"
  30. #define BWHITE      "\033[137m"
  31.  
  32. // Underline
  33. #define UBLACK      "\033[430m"
  34. #define URED        "\033[431m"
  35. #define UGREEN      "\033[432m"
  36. #define UYELLOW     "\033[433m"
  37. #define UBLUE       "\033[434m"
  38. #define UPURPLE     "\033[435m"
  39. #define UCYAN       "\033[436m"
  40. #define UWHITE      "\033[437m"
  41.  
  42. // Background
  43. #define BGBLACK     "\033[40m"
  44. #define BGRED       "\033[41m"
  45. #define BGGREEN     "\033[42m"
  46. #define BGYELLOW    "\033[43m"
  47. #define BGBLUE      "\033[44m"
  48. #define BGPURPLE    "\033[45m"
  49. #define BGCYAN      "\033[46m"
  50. #define BGWHITE     "\033[47m"
  51.  
  52. // High Intensity
  53. #define IBLACK      "\033[090m"
  54. #define IRED        "\033[091m"
  55. #define IGREEN      "\033[092m"
  56. #define IYELLOW     "\033[093m"
  57. #define IBLUE       "\033[094m"
  58. #define IPURPLE     "\033[095m"
  59. #define ICYAN       "\033[096m"
  60. #define IWHITE      "\033[097m"
  61.  
  62. // Bold High Intensity
  63. #define BIBLACK     "\033[190m"
  64. #define BIRED       "\033[191m"
  65. #define BIGREEN     "\033[192m"
  66. #define BIYELLOW    "\033[193m"
  67. #define BIBLUE      "\033[194m"
  68. #define BIPURPLE    "\033[195m"
  69. #define BICYAN      "\033[196m"
  70. #define BIWHITE     "\033[197m"
  71.  
  72. // High Intensity backgrounds
  73. #define BGIBLACK    "\033[0100m"
  74. #define BGIRED      "\033[0101m"
  75. #define BGIGREEN    "\033[0102m"
  76. #define BGIYELLOW   "\033[0103m"
  77. #define BGIBLUE     "\033[0104m"
  78. #define BGIPURPLE   "\033[0105m"
  79. #define BGICYAN     "\033[0106m"
  80. #define BGIWHITE    "\033[0107m"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement