summaryrefslogtreecommitdiff
path: root/sys/src/cmd/auth
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2016-08-08 07:48:55 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2016-08-08 07:48:55 +0200
commit590a4980bcf1ba21b3ddbef032bc4ca0589c840c (patch)
tree3a8b0db32cb67a200e92553c5d627681d2132bce /sys/src/cmd/auth
parente9818df0ba02fea011b443d21a3cd31b83755ded (diff)
auth/fgui: use pale colors
Diffstat (limited to 'sys/src/cmd/auth')
-rw-r--r--sys/src/cmd/auth/factotum/fgui.c8
1 files 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");