aboutsummaryrefslogtreecommitdiff
blob: 2c3de9bf8a8ecf2bba119d8348e0d1fbbe54c52e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright 2005-2021 Gentoo Foundation
 * Distributed under the terms of the GNU General Public License v2
 *
 * Copyright 2019-     Fabian Groffen  - <grobian@gentoo.org>
 */

#ifndef _COLORS_H
#define _COLORS_H 1

extern const char *BOLD;
extern const char *NORM;
extern const char *BLUE;
extern const char *DKBLUE;
extern const char *CYAN;
extern const char *GREEN;
extern const char *DKGREEN;
extern const char *MAGENTA;
extern const char *RED;
extern const char *YELLOW;
extern const char *BRYELLOW;
extern const char *WHITE;

void color_remap(void);
void color_clear(void);

#endif