diff options
author | Christian Hesse <list@eworm.de> | 2012-06-27 18:39:46 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-06-27 18:40:17 +0100 |
commit | 512ed2b921e89a5e5208a7c6ddb9837b0d184a3e (patch) | |
tree | 00d7a4a1affc024b076e1f29fe52d98128e8ce06 /src/config/colour.h | |
parent | 567b9bf9e78cdf904f8e885465cf03afd0d541ba (diff) | |
download | ipxe-512ed2b921e89a5e5208a7c6ddb9837b0d184a3e.tar.gz |
[ui] Allow colours to be configured via config/colour.h
Modified-by: Michael Brown <mcb30@ipxe.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/colour.h')
-rw-r--r-- | src/config/colour.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/config/colour.h b/src/config/colour.h new file mode 100644 index 00000000..d32d46dc --- /dev/null +++ b/src/config/colour.h @@ -0,0 +1,32 @@ +#ifndef CONFIG_COLOUR_H +#define CONFIG_COLOUR_H + +/** @file + * + * Display colour configuration + * + */ + +FILE_LICENCE ( GPL2_OR_LATER ); + +#define COLOR_NORMAL_FG COLOR_WHITE +#define COLOR_NORMAL_BG COLOR_BLUE + +#define COLOR_SELECT_FG COLOR_WHITE +#define COLOR_SELECT_BG COLOR_RED + +#define COLOR_SEPARATOR_FG COLOR_CYAN +#define COLOR_SEPARATOR_BG COLOR_BLUE + +#define COLOR_EDIT_FG COLOR_BLACK +#define COLOR_EDIT_BG COLOR_CYAN + +#define COLOR_ALERT_FG COLOR_WHITE +#define COLOR_ALERT_BG COLOR_RED + +#define COLOR_URL_FG COLOR_CYAN +#define COLOR_URL_BG COLOR_BLUE + +#include <config/local/colour.h> + +#endif /* CONFIG_COLOUR_H */ |