blob: 8969c22b6fc627baf4f584c83fe33c9abe84fb86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef fooansicolorshfoo
#define fooansicolorshfoo
extern const char *ansi_red;
extern const char *ansi_green;
extern const char *ansi_yellow;
extern const char *ansi_blue;
extern const char *ansi_magenta;
extern const char *ansi_grey;
extern const char *ansi_normal;
#define ANSI_RED "\x1B[0;31m"
#define ANSI_GREEN "\x1B[0;32m"
#define ANSI_YELLOW "\x1B[0;33m"
#define ANSI_BLUE "\x1B[0;34m"
#define ANSI_MAGENTA "\x1B[0;35m"
#define ANSI_GREY "\x1B[0;38;5;245m"
#define ANSI_NORMAL "\x1B[0m"
#endif
|