summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2019-11-23 19:32:07 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2019-11-23 19:34:41 +0100
commit1ad02f526c3c0e2488f54c6028e998370839c7a5 (patch)
treefd91fb9b6852d8a2ae7e978e68dcf24b5172a76e
parent7a98bc7944f1b390e5a82e40c62d0ce7540befdc (diff)
menuconfig: Avoid the non-ANSI 'brightwhite' color in the aquatic theme
Not available with TERM=xterm (as opposed to xterm-256color). Use fg:white instead of fg:brightwhite for dialog box bodies. Not a huge difference. Came up in https://github.com/espressif/esp-idf/issues/4387.
-rwxr-xr-xmenuconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/menuconfig.py b/menuconfig.py
index 7b1dbce..d7776c8 100755
--- a/menuconfig.py
+++ b/menuconfig.py
@@ -318,7 +318,7 @@ _STYLES = {
separator=fg:white,bg:cyan,bold
help=path
frame=fg:white,bg:cyan,bold
- body=fg:brightwhite,bg:blue
+ body=fg:white,bg:blue
edit=fg:black,bg:white
"""
}