iPXE
colour.h
Go to the documentation of this file.
1 #ifndef CONFIG_COLOUR_H
2 #define CONFIG_COLOUR_H
3 
4 /** @file
5  *
6  * Display colour configuration
7  *
8  */
9 
10 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11 
12 #define COLOR_NORMAL_FG COLOR_WHITE
13 #define COLOR_NORMAL_BG COLOR_BLUE
14 
15 #define COLOR_SELECT_FG COLOR_WHITE
16 #define COLOR_SELECT_BG COLOR_RED
17 
18 #define COLOR_SEPARATOR_FG COLOR_CYAN
19 #define COLOR_SEPARATOR_BG COLOR_BLUE
20 
21 #define COLOR_EDIT_FG COLOR_BLACK
22 #define COLOR_EDIT_BG COLOR_CYAN
23 
24 #define COLOR_ALERT_FG COLOR_WHITE
25 #define COLOR_ALERT_BG COLOR_RED
26 
27 #define COLOR_URL_FG COLOR_CYAN
28 #define COLOR_URL_BG COLOR_BLUE
29 
30 #define COLOR_PXE_FG COLOR_BLACK
31 #define COLOR_PXE_BG COLOR_WHITE
32 
33 #include <config/named.h>
34 #include NAMED_CONFIG(colour.h)
35 #include <config/local/colour.h>
36 #include LOCAL_NAMED_CONFIG(colour.h)
37 
38 #endif /* CONFIG_COLOUR_H */
Named configurations.
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)