Created
January 20, 2015 22:49
-
-
Save erseco/d499e4a66b5eb03e8140 to your computer and use it in GitHub Desktop.
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
/****************************************************************************** | |
* | |
* 2015 - Ernesto Serrano <[email protected]> | |
* --------------------------------------------- | |
* | |
* Fichero auxiliar para pintar colores en la consola | |
* | |
******************************************************************************/ | |
#ifndef __Color_h__ | |
#define __Color_h__ | |
// Colores ansi para la consola | |
#define BLACK "\033[0m" | |
#define RED "\033[31m" | |
#define GREEN "\033[32m" | |
#define YELLOW "\033[33m" | |
#define BLUE "\033[34m" | |
#define MAGENTA "\033[35m" | |
#define CYAN "\033[36m" | |
#define WHITE "\033[37m" | |
#define BOLD "\033[1m" // Negrita | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment