mirror of
https://github.com/ipxe/ipxe
synced 2025-12-28 02:28:57 +03:00
[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>
This commit is contained in:
committed by
Michael Brown
parent
567b9bf9e7
commit
512ed2b921
32
src/config/colour.h
Normal file
32
src/config/colour.h
Normal file
@@ -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 */
|
||||
Reference in New Issue
Block a user