Claude Chappe' Curse - A C Game
Loading...
Searching...
No Matches
color.h
Go to the documentation of this file.
1
#ifndef COLOR_H
2
#define COLOR_H
3
4
// Color codes
5
#define RESET "\x1b[0m"
6
#define BLACK "\x1b[30m"
7
#define RED "\x1b[31m"
8
#define GREEN "\x1b[32m"
9
#define YELLOW "\x1b[33m"
10
#define BLUE "\x1b[34m"
11
#define MAGENTA "\x1b[35m"
12
#define CYAN "\x1b[36m"
13
#define WHITE "\x1b[37m"
14
#define GREY "\x1b[90m"
15
16
// Bold color codes
17
#define BOLD_BLACK "\x1b[1;30m"
18
#define BOLD_RED "\x1b[1;31m"
19
#define BOLD_GREEN "\x1b[1;32m"
20
#define BOLD_YELLOW "\x1b[1;33m"
21
#define BOLD_BLUE "\x1b[1;34m"
22
#define BOLD_MAGENTA "\x1b[1;35m"
23
#define BOLD_CYAN "\x1b[1;36m"
24
#define BOLD_WHITE "\x1b[1;37m"
25
#define BOLD_GREY "\x1b[1;90m"
26
27
#endif
// COLOR_H
Generated by
1.9.8