Skip to content

Instantly share code, notes, and snippets.

@dhilst
Created July 13, 2016 21:05
Show Gist options
  • Save dhilst/f7154bda8e0304ecf0b85b2eca825aae to your computer and use it in GitHub Desktop.
Save dhilst/f7154bda8e0304ecf0b85b2eca825aae to your computer and use it in GitHub Desktop.
Terminal colors
#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