Created
July 13, 2016 21:05
-
-
Save dhilst/f7154bda8e0304ecf0b85b2eca825aae to your computer and use it in GitHub Desktop.
Terminal colors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _TERMCOLORS_H | |
#define _TERMCOLORS_H | |
#define _RED "\x1b[31m" | |
#define _GREEN "\x1b[32m" | |
#define _YELLOW "\x1b[33m" | |
#define _BLUE "\x1b[34m" | |
#define _MAGENTA "\x1b[35m" | |
#define _CYAN "\x1b[36m" | |
#define _RESET "\x1b[0m" | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment