Skip to content

Instantly share code, notes, and snippets.

@erseco
Created January 20, 2015 22:49
Show Gist options
  • Save erseco/d499e4a66b5eb03e8140 to your computer and use it in GitHub Desktop.
Save erseco/d499e4a66b5eb03e8140 to your computer and use it in GitHub Desktop.
/******************************************************************************
*
* 2015 - Ernesto Serrano <info@ernesto.es>
* ---------------------------------------------
*
* 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