about summary refs log tree commit diff stats
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-24 12:04:56 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-24 12:04:56 +0200
commit2e0c767d74da024c3cd4dbd524e1364039704451 (patch)
treee4b11c89031d46e548920e663ca912bfdb5fc918 /main.c
parenta5379e901c909407f991302499c9d7522cb6d00d (diff)
downloaddwm-2e0c767d74da024c3cd4dbd524e1364039704451.tar.gz
3->4 colors
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/main.c b/main.c
index 5b00d0c..8eafc11 100644
--- a/main.c
+++ b/main.c
@@ -121,9 +121,10 @@ setup()
 	seltag[0] = True;
 
 	/* style */
-	dc.bg = getcolor(BGCOLOR);
-	dc.fg = getcolor(FGCOLOR);
-	dc.border = getcolor(BORDERCOLOR);
+	dc.bg[0] = getcolor(NORMBGCOLOR);
+	dc.fg[0] = getcolor(NORMFGCOLOR);
+	dc.bg[1] = getcolor(SELBGCOLOR);
+	dc.fg[1] = getcolor(SELFGCOLOR);
 	setfont(FONT);
 
 	sx = sy = 0;