loader: Use Cyan instead of Blue for some menu items

BLUE often translates to DARK BLUE. On BLACK this is hard to
read. Instead, use CYAN which looks good on both black and white
backgrounds.

Discussed with: kevans
Sponsored by: Netflix

(cherry picked from commit baa7e9cd30)
This commit is contained in:
Warner Losh 2024-10-11 13:06:24 -06:00
parent 28e212c740
commit 708c8a926a

View file

@ -122,7 +122,7 @@ menu.boot_environments = {
if is_default then
name_color = color.escapefg(color.GREEN)
else
name_color = color.escapefg(color.BLUE)
name_color = color.escapefg(color.CYAN)
end
bootenv_name = bootenv_name .. name_color ..
choice .. color.resetfg()
@ -342,7 +342,7 @@ menu.welcome = {
name_color = color.escapefg(color.GREEN)
kernel_name = "default/"
else
name_color = color.escapefg(color.BLUE)
name_color = color.escapefg(color.CYAN)
end
kernel_name = kernel_name .. name_color ..
choice .. color.resetfg()