Stop trying to use named colors

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2010-09-10 11:31:02 +02:00
parent cf679c2db3
commit 6ff0263072
1 changed files with 2 additions and 2 deletions

View File

@ -428,10 +428,10 @@ main(int argc, char **argv)
/* init default font and colors */
colors_reqs[0] = xcolor_init_unchecked(&globalconf.colors.fg,
"black", sizeof("black") - 1);
"#000000", sizeof("#000000") - 1);
colors_reqs[1] = xcolor_init_unchecked(&globalconf.colors.bg,
"white", sizeof("white") - 1);
"#ffffff", sizeof("#ffffff") - 1);
globalconf.font = font_new("sans 8");