Skip to content

Instantly share code, notes, and snippets.

View thiagolopes's full-sized avatar

Thiago Lopes thiagolopes

View GitHub Profile
@thiagolopes
thiagolopes / scape_codes.h
Last active November 22, 2023 05:37 — forked from radxene/color_output.c
Scape codes C header with colors
#define ANSI_RESET_ALL "\x1b[0m"
#define ANSI_COLOR_BLACK "\x1b[30m"
#define ANSI_COLOR_RED "\x1b[31m"
#define ANSI_COLOR_GREEN "\x1b[32m"
#define ANSI_COLOR_YELLOW "\x1b[33m"
#define ANSI_COLOR_BLUE "\x1b[34m"
#define ANSI_COLOR_MAGENTA "\x1b[35m"
#define ANSI_COLOR_CYAN "\x1b[36m"