Skip to content

Commit

Permalink
[ui] change menu, status, and other colors to be more visible
Browse files Browse the repository at this point in the history
  • Loading branch information
saulpw committed Oct 16, 2023
1 parent 32f08ea commit d30b164
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions visidata/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

vd.option('disp_menu', True, 'show menu on top line when not active', sheettype=None)
vd.option('disp_menu_keys', True, 'show keystrokes inline in submenus', sheettype=None)
vd.option('color_menu', 'black on 110 cyan', 'color of menu items in general')
vd.option('color_menu', 'black on 103 blue', 'color of menu items in general')
vd.option('color_menu_active', '223 yellow on black', 'color of active menu items')
vd.option('color_menu_spec', 'black on 34 green', 'color of sheet-specific menu items')
vd.option('color_menu_help', 'black italic on 110 cyan', 'color of helpbox')
vd.option('color_menu_help', 'black italic on 103 blue', 'color of helpbox')

vd.option('disp_menu_boxchars', '││──┌┐└┘├┤', 'box characters to use for menus')
vd.option('disp_menu_more', '»', 'command submenu indicator')
Expand Down
6 changes: 3 additions & 3 deletions visidata/statusbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
vd.option('color_keystrokes', 'bold 233 black on 110 cyan', 'color of input keystrokes on status line')
vd.option('color_keys', 'bold', 'color of keystrokes in help')
vd.option('color_status', 'bold on 238', 'status line color')
vd.option('color_error', 'red', 'error message color')
vd.option('color_warning', 'yellow', 'warning message color')
vd.option('color_error', '202 1', 'error message color')
vd.option('color_warning', '166 15', 'warning message color')
vd.option('color_top_status', 'underline', 'top window status bar color')
vd.option('color_active_status', 'black on 110 cyan', ' active window status bar color')
vd.option('color_active_status', 'black on 103 blue', ' active window status bar color')
vd.option('color_inactive_status', '8 on black', 'inactive window status bar color')

BaseSheet.init('longname', lambda: '')
Expand Down
2 changes: 1 addition & 1 deletion visidata/threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
vd.option('profile', False, 'enable profiling on threads')
vd.option('min_memory_mb', 0, 'minimum memory to continue loading and async processing')

vd.option('color_working', 'green', 'color of system running smoothly')
vd.option('color_working', '118 5', 'color of system running smoothly')

BaseSheet.init('currentThreads', list)

Expand Down

0 comments on commit d30b164

Please sign in to comment.