Advertisement
spacechase0

IRC Color Cdes

Jan 18th, 2013
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.84 KB | None | 0 0
  1.     const std::string COLOR = "\x03";
  2.     const std::string BOLD  = "\x2";
  3.     const std::string ULINE = "\x1f";
  4.    
  5.     const std::string WHITE      = COLOR + "00";
  6.     const std::string BLACK      = COLOR + "01";
  7.     const std::string DARK_BLUE  = COLOR + "02";
  8.     const std::string GREEN      = COLOR + "03";
  9.     const std::string RED        = COLOR + "04";
  10.     const std::string MAROON     = COLOR + "05";
  11.     const std::string PURPLE     = COLOR + "06";
  12.     const std::string ORANGE     = COLOR + "07";
  13.     const std::string YELLOW     = COLOR + "08";
  14.     const std::string LIME_GREEN = COLOR + "09";
  15.     const std::string TEAL       = COLOR + "10";
  16.     const std::string CYAN       = COLOR + "11";
  17.     const std::string BLUE       = COLOR + "12";
  18.     const std::string PINK       = COLOR + "13";
  19.     const std::string GREY       = COLOR + "14";
  20.     const std::string LIGHT_GREY = COLOR + "15";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement