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
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11FILE_SECBOOT ( PERMITTED );
12
13#define COLOR_NORMAL_FG COLOR_WHITE
14#define COLOR_NORMAL_BG COLOR_BLUE
15
16#define COLOR_SELECT_FG COLOR_WHITE
17#define COLOR_SELECT_BG COLOR_RED
18
19#define COLOR_SEPARATOR_FG COLOR_CYAN
20#define COLOR_SEPARATOR_BG COLOR_BLUE
21
22#define COLOR_EDIT_FG COLOR_BLACK
23#define COLOR_EDIT_BG COLOR_CYAN
24
25#define COLOR_ALERT_FG COLOR_WHITE
26#define COLOR_ALERT_BG COLOR_RED
27
28#define COLOR_URL_FG COLOR_CYAN
29#define COLOR_URL_BG COLOR_BLUE
30
31#define COLOR_PXE_FG COLOR_BLACK
32#define COLOR_PXE_BG COLOR_WHITE
33
34#include <config/named.h>
35#include NAMED_CONFIG(colour.h)
36#include <config/local/colour.h>
37#include LOCAL_NAMED_CONFIG(colour.h)
38
39#endif /* CONFIG_COLOUR_H */
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
Named configurations.