summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-06-27 08:42:30 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-06-27 08:42:30 -0700
commit28f080b2ea338b72fbff2992ba4745c6456f651f (patch)
tree3fc4332a8a8c1c58d69e1092ea09e278b4ef4372 /examples
parent926c2cf078da9740838663b2651c372a5340eb5f (diff)
downloadcmd2-git-28f080b2ea338b72fbff2992ba4745c6456f651f.tar.gz
Made table more readable when colored module is installed
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/table_display.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/table_display.py b/examples/table_display.py
index 9af15175..c2aff0c1 100755
--- a/examples/table_display.py
+++ b/examples/table_display.py
@@ -20,7 +20,7 @@ import tableformatter as tf
try:
from colored import bg
BACK_PRI = bg(4)
- BACK_ALT = bg(2)
+ BACK_ALT = bg(22)
except ImportError:
try:
from colorama import Back