From 590a4980bcf1ba21b3ddbef032bc4ca0589c840c Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Mon, 8 Aug 2016 07:48:55 +0200 Subject: [PATCH] auth/fgui: use pale colors --- sys/src/cmd/auth/factotum/fgui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/src/cmd/auth/factotum/fgui.c b/sys/src/cmd/auth/factotum/fgui.c index ce372e864..dc78f3de5 100644 --- a/sys/src/cmd/auth/factotum/fgui.c +++ b/sys/src/cmd/auth/factotum/fgui.c @@ -573,7 +573,7 @@ setupneedkey(Request *r) snprint(cn, sizeof cn, "name_%d", i); if(entry[i].a->name == nil){ entry[i].name = createentry(cs, cn); - chanprint(cs->ctl, "%s image yellow", cn); + chanprint(cs->ctl, "%s image paleyellow", cn); chanprint(cs->ctl, "%s border 1", cn); } else { entry[i].name = createtext(cs, cn); @@ -585,7 +585,7 @@ setupneedkey(Request *r) snprint(cn, sizeof cn, "val_%d", i); if(a->type == AttrQuery){ entry[i].val = createentry(cs, cn); - chanprint(cs->ctl, "%s image yellow", cn); + chanprint(cs->ctl, "%s image paleyellow", cn); chanprint(cs->ctl, "%s border 1", cn); if(a->name != nil){ if(strcmp(a->name, "user") == 0) @@ -609,8 +609,8 @@ setupneedkey(Request *r) chanprint(cs->ctl, "b_done border 1"); chanprint(cs->ctl, "b_done align center"); chanprint(cs->ctl, "b_done text Done"); - chanprint(cs->ctl, "b_done image green"); - chanprint(cs->ctl, "b_done light green"); + chanprint(cs->ctl, "b_done image palegreen"); + chanprint(cs->ctl, "b_done light palegreen"); b_cancel = createtextbutton(cs, "b_cancel"); chanprint(cs->ctl, "b_cancel border 1");