xref: /aosp_15_r20/external/mesa3d/src/freedreno/rnn/colors.c (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright © 2012 Marcin Kościelnicki <[email protected]>
3  * All Rights Reserved.
4  * SPDX-License-Identifier: MIT
5  */
6 
7 #include "colors.h"
8 
9 const struct envy_colors envy_null_colors = {
10 	.reset	= "",
11 	.iname	= "",
12 	.rname	= "",
13 	.mod	= "",
14 	.sym	= "",
15 	.reg	= "",
16 	.regsp	= "",
17 	.num	= "",
18 	.mem	= "",
19 	.btarg	= "",
20 	.ctarg	= "",
21 	.bctarg	= "",
22 	.eval	= "",
23 	.comm	= "",
24 	.err	= "",
25 };
26 
27 const struct envy_colors envy_def_colors = {
28 	.reset	= "\x1b[0m",
29 	.iname	= "\x1b[0;32m",
30 	.rname	= "\x1b[0;32m",
31 	.mod	= "\x1b[0;36m",
32 	.sym	= "\x1b[0;36m",
33 	.reg	= "\x1b[0;31m",
34 	.regsp	= "\x1b[0;35m",
35 	.num	= "\x1b[0;33m",
36 	.mem	= "\x1b[0;35m",
37 	.btarg	= "\x1b[0;35m",
38 	.ctarg	= "\x1b[0;1;37m",
39 	.bctarg	= "\x1b[0;1;35m",
40 	.eval	= "\x1b[0;35m",
41 	.comm	= "\x1b[0;34m",
42 	.err	= "\x1b[0;1;31m",
43 };
44