Skip to content

Commit e7cc25c

Browse files
committed
Changed default colored row BG color to be 50% gray so it is equally visible on black and white backgrounds.
1 parent 79d3288 commit e7cc25c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tableformatter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ class TableColors(object):
293293
TEXT_COLOR_RED = fg(196)
294294
TEXT_COLOR_GREEN = fg(119)
295295
TEXT_COLOR_BLUE = fg(27)
296-
BG_COLOR_ROW = bg(234)
296+
BG_COLOR_ROW = bg(244)
297297
BG_RESET = attr('reset') # docs say bg(0) should do this but it doesn't work right
298298
BOLD = attr('bold')
299299
RESET = attr('reset')
@@ -332,7 +332,7 @@ def set_color_library(cls, library_name: str) -> None:
332332
cls.TEXT_COLOR_RED = fg(196)
333333
cls.TEXT_COLOR_GREEN = fg(119)
334334
cls.TEXT_COLOR_BLUE = fg(27)
335-
cls.BG_COLOR_ROW = bg(234)
335+
cls.BG_COLOR_ROW = bg(244)
336336
cls.BG_RESET = attr('reset') # docs say bg(0) should do this but it doesn't work right
337337
cls.BOLD = attr('bold')
338338
cls.RESET = attr('reset')

0 commit comments

Comments
 (0)