ColorTextColors.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Janos Kutscherauer <noshky@gmail.com>
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
16 #ifndef COLORTEXTCOLORS_H
17 #define COLORTEXTCOLORS_H
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
38 #define CRED "\033[31m"
39 #define CGREEN "\033[32m"
40 #define CDEFAULT "\033[39m"
41 #define BGRED "\033[41m"
42 #define BGGREEN "\033[42m"
43 #define BGDEFAULT "\033[49m"
44 #define SBOLD "\033[1m"
45 #define SDEFAULT "\033[21m"
46 #define LINEFILL "\033[K"
47 
52 #ifdef __cplusplus
53 }
54 #endif
55 
56 #endif /* COLORTEXTCOLORS_H */
57