config.def.h: style improvement, use color Scheme enum
This commit is contained in:
		@@ -12,10 +12,10 @@ static const char col_gray2[]       = "#444444";
 | 
				
			|||||||
static const char col_gray3[]       = "#bbbbbb";
 | 
					static const char col_gray3[]       = "#bbbbbb";
 | 
				
			||||||
static const char col_gray4[]       = "#eeeeee";
 | 
					static const char col_gray4[]       = "#eeeeee";
 | 
				
			||||||
static const char col_cyan[]        = "#005577";
 | 
					static const char col_cyan[]        = "#005577";
 | 
				
			||||||
static const char *colors[][3]      = {
 | 
					static const char *colors[SchemeLast][3]      = {
 | 
				
			||||||
	/* fg        bg         border   */
 | 
						/*               fg         bg         border   */
 | 
				
			||||||
	{ col_gray3, col_gray1, col_gray2}, /* normal */
 | 
						[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
 | 
				
			||||||
	{ col_gray4, col_cyan,  col_cyan }, /* selected */
 | 
						[SchemeSel] =  { col_gray4, col_cyan,  col_cyan  },
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* tagging */
 | 
					/* tagging */
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user