wmbiff: Change default colors
Signed-off-by: Carlos R. Mafra <crmafra@gmail.com>
This commit is contained in:
		
							parent
							
								
									4bcb5314a5
								
							
						
					
					
						commit
						474afcfe9e
					
				
					 2 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
					@ -2,7 +2,7 @@
 | 
				
			||||||
static const char * wmbiff_master_xpm[] = {
 | 
					static const char * wmbiff_master_xpm[] = {
 | 
				
			||||||
"160 109 15 1",
 | 
					"160 109 15 1",
 | 
				
			||||||
" 	c #00000000FFFF",
 | 
					" 	c #00000000FFFF",
 | 
				
			||||||
".	c #208120812081",
 | 
					".	c #505075000000",
 | 
				
			||||||
"X	c #FFFFFFFF0000",
 | 
					"X	c #FFFFFFFF0000",
 | 
				
			||||||
"o	c #492441030000",
 | 
					"o	c #492441030000",
 | 
				
			||||||
"O	c #79E779E70820",
 | 
					"O	c #79E779E70820",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -77,9 +77,9 @@ static const char *font = NULL;
 | 
				
			||||||
int debug_default = DEBUG_ERROR;
 | 
					int debug_default = DEBUG_ERROR;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* color from wmbiff's xpm, down to 24 bits. */
 | 
					/* color from wmbiff's xpm, down to 24 bits. */
 | 
				
			||||||
const char *foreground = "#21B3AF";	/* foreground cyan */
 | 
					const char *foreground = "white";	/* foreground white */
 | 
				
			||||||
const char *background = "#202020";	/* background gray */
 | 
					const char *background = "#505075";	/* background blue */
 | 
				
			||||||
static const char *highlight = "yellow";
 | 
					static const char *highlight = "red";
 | 
				
			||||||
int SkipCertificateCheck = 0;
 | 
					int SkipCertificateCheck = 0;
 | 
				
			||||||
int Relax = 0;					/* be not paranoid */
 | 
					int Relax = 0;					/* be not paranoid */
 | 
				
			||||||
static int notWithdrawn = 0;
 | 
					static int notWithdrawn = 0;
 | 
				
			||||||
| 
						 | 
					@ -882,7 +882,7 @@ static char **CreateBackingXPM(int width, int height,
 | 
				
			||||||
	ret[0] = malloc_ordie(30);
 | 
						ret[0] = malloc_ordie(30);
 | 
				
			||||||
	sprintf(ret[0], "%d %d %d %d", width, height, colors, 1);
 | 
						sprintf(ret[0], "%d %d %d %d", width, height, colors, 1);
 | 
				
			||||||
	ret[1] = (char *) " \tc #0000FF";	/* no color */
 | 
						ret[1] = (char *) " \tc #0000FF";	/* no color */
 | 
				
			||||||
	ret[2] = (char *) ".\tc #202020";	/* background gray */
 | 
						ret[2] = (char *) ".\tc #505075";	/* background gray */
 | 
				
			||||||
	ret[2] = malloc_ordie(30);
 | 
						ret[2] = malloc_ordie(30);
 | 
				
			||||||
	sprintf(ret[2], ".\tc %s", background);
 | 
						sprintf(ret[2], ".\tc %s", background);
 | 
				
			||||||
	ret[3] = (char *) "+\tc #000000";	/* shadowed */
 | 
						ret[3] = (char *) "+\tc #000000";	/* shadowed */
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue