mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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:
parent
28e212c740
commit
708c8a926a
1 changed files with 2 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue