mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 06:15:33 -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
This commit is contained in:
parent
f2e62e6013
commit
baa7e9cd30
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