aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-25 07:54:49 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-25 07:54:49 +0200
commit9833610356f7ce033589680fddf87000e5788774 (patch)
treea3919d3c1ae6e75d3774ce4cf0be0d430521d31f /main.c
parentde7fc0011eccb546db1278fad41b684b3abaca18 (diff)
downloaddwm-9833610356f7ce033589680fddf87000e5788774.tar.zst
back to 3 colors
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/main.c b/main.c
index 8eafc11..5b00d0c 100644
--- a/main.c
+++ b/main.c
@@ -121,10 +121,9 @@ setup()
seltag[0] = True;
/* style */
- dc.bg[0] = getcolor(NORMBGCOLOR);
- dc.fg[0] = getcolor(NORMFGCOLOR);
- dc.bg[1] = getcolor(SELBGCOLOR);
- dc.fg[1] = getcolor(SELFGCOLOR);
+ dc.bg = getcolor(BGCOLOR);
+ dc.fg = getcolor(FGCOLOR);
+ dc.border = getcolor(BORDERCOLOR);
setfont(FONT);
sx = sy = 0;