Adjust colors

- do not reverse CPU steal and guest in monochrome
- black on black in Light Terminal is not visible, use blue on black
- white on blue in Light Terminal is display as blue on black, use
  yellow on black
- re-draw FunctionBar after color change
This commit is contained in:
Christian Göttsche
2020-09-28 14:55:38 +02:00
committed by cgzones
parent 8efc88593a
commit 4b14ab9789
3 changed files with 29 additions and 32 deletions

6
CRT.h
View File

@ -117,17 +117,13 @@ void CRT_handleSIGSEGV(int sgn);
#define KEY_ALT(x) (KEY_F(64 - 26) + (x - 'A'))
extern const char *CRT_treeStrAscii[TREE_STR_COUNT];
#ifdef HAVE_LIBNCURSESW
extern const char *CRT_treeStrUtf8[TREE_STR_COUNT];
extern bool CRT_utf8;
#endif
extern const char **CRT_treeStr;
extern const char *const *CRT_treeStr;
extern int CRT_delay;