mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-27 06:04:40 +08:00
video: Add a dark-grey console colour
This is useful for highlighting something with a black background, as is needed with cedit when using a white-on-black console. Add this as a new colour. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
82c6ebae42
commit
52c19173df
@ -339,7 +339,7 @@ static void scene_render_background(struct scene_obj *obj, bool box_only)
|
||||
|
||||
/* draw a background for the object */
|
||||
if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) {
|
||||
fore = VID_BLACK;
|
||||
fore = VID_DARK_GREY;
|
||||
back = VID_WHITE;
|
||||
} else {
|
||||
fore = VID_LIGHT_GRAY;
|
||||
|
@ -294,6 +294,9 @@ static const struct vid_rgb colours[VID_COLOUR_COUNT] = {
|
||||
{ 0xff, 0x00, 0xff }, /* bright magenta */
|
||||
{ 0x00, 0xff, 0xff }, /* bright cyan */
|
||||
{ 0xff, 0xff, 0xff }, /* white */
|
||||
|
||||
/* an extra one for menus */
|
||||
{ 0x40, 0x40, 0x40 }, /* dark gray */
|
||||
};
|
||||
|
||||
u32 video_index_to_colour(struct video_priv *priv, enum colour_idx idx)
|
||||
|
@ -181,6 +181,7 @@ enum colour_idx {
|
||||
VID_LIGHT_MAGENTA,
|
||||
VID_LIGHT_CYAN,
|
||||
VID_WHITE,
|
||||
VID_DARK_GREY,
|
||||
|
||||
VID_COLOUR_COUNT
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user