File: examples_colors.h

package info (click to toggle)
aca 0.1.6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 492 kB
  • ctags: 569
  • sloc: ansic: 4,254; sh: 2,237; makefile: 256
file content (38 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (2)
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
28
29
30
31
32
33
34
35
36
37
38

#ifndef __EXAMPLES_COLORS_H
#define __EXAMPLES_COLORS_H

extern void examples_colors();

typedef enum {
	_dummy_color,
/* color */	
	BLACK_WHITE,
	YELLOW_WHITE,
	BLUE_WHITE,
	GREEN_WHITE,
	WHITE_CYAN,
	BLACK_CYAN,
	YELLOW_CYAN,
	RED_CYAN,
	ZOMBIE_RED_CYAN,
	GREEN_CYAN,
	RUN_GREEN_CYAN,
	WHITE_RED,
	YELLOW_RED,
	WHITE_BLACK,
	MENU_WHITE_BLACK,
	YELLOW_BLACK,
	RED_BLACK,
	WHITE_BLUE,
	YELLOW_BLUE,
	RED_BLUE,
	GREEN_BLUE,
	MAGENTA_BLUE,	
	BLUE_CYAN,
	RED_WHITE,
/* last */
	EXAMPLES_COLOR_NUM	
} enum_examples_colors;

#endif