From 8927348ef1553d14bce5ccb87c9321102fb7e830 Mon Sep 17 00:00:00 2001 From: Jessica Hamilton Date: Tue, 15 Sep 2015 01:32:07 +0000 Subject: [PATCH] Boot menu: change colours of sub-menu headers. Fixes #12371. Changed from white on red background, to yellow on black (neutral) background. Red on black made it look like a warning, whereas yellow feels more informative. --- src/system/boot/platform/generic/text_menu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/boot/platform/generic/text_menu.cpp b/src/system/boot/platform/generic/text_menu.cpp index b60957efaf..48ba30ff96 100644 --- a/src/system/boot/platform/generic/text_menu.cpp +++ b/src/system/boot/platform/generic/text_menu.cpp @@ -22,8 +22,8 @@ static const int32 kHelpLines = 3; static const console_color kBackgroundColor = BLACK; static const console_color kTextColor = WHITE; static const console_color kCopyrightColor = CYAN; -static const console_color kTitleColor = WHITE; -static const console_color kTitleBackgroundColor = RED; +static const console_color kTitleColor = YELLOW; +static const console_color kTitleBackgroundColor = kBackgroundColor; static const console_color kHelpTextColor = WHITE; static const console_color kItemColor = GRAY;