ref: d37cf8e29d5cb8e59a30e218595be0ea55b0a78f
dir: /patches/winwatch.patch/
diff -r 297026d9dc30 sys/src/cmd/winwatch.c --- a/sys/src/cmd/winwatch.c Thu Feb 18 21:40:30 2021 +0100 +++ b/sys/src/cmd/winwatch.c Thu Feb 25 10:45:25 2021 -0800 @@ -339,12 +339,12 @@ if(initdraw(0, fontname, "winwatch") < 0) sysfatal("initdraw: %r"); - lightblue = allocimagemix(display, DPalebluegreen, DWhite); + lightblue = allocimage(display, Rect(0,0,1,1), screen->chan, 1, 0x9a9a9aFF); - statecol[0] = allocimage(display, Rect(0,0,1,1), screen->chan, 1, 0xCCCCCCFF); - statecol[1] = lightblue; - statecol[2] = lightblue; - statecol[3] = allocimage(display, Rect(0,0,1,1), screen->chan, 1, DPalegreygreen); + statecol[0] = lightblue; + statecol[1] = allocimage(display, Rect(0,0,1,1), screen->chan, 1, 0x777777FF); + statecol[2] = allocimage(display, Rect(0,0,1,1), screen->chan, 1, 0xaaaaaaFF); + statecol[3] = allocimage(display, Rect(0,0,1,1), screen->chan, 1, 0xccccccFF); for(i=0; i<nelem(statecol); i++) if(statecol[i] == nil)