diff options
author | Petter Rodhelind <petter.rodhelind@gmail.com> | 2017-10-26 11:52:11 +0200 |
---|---|---|
committer | Petter Rodhelind <petter.rodhelind@gmail.com> | 2017-10-26 11:52:11 +0200 |
commit | 911dcfd317786043c1f3d406207d4aba50891970 (patch) | |
tree | 85af00b9f05b3457954a3b866e0d53ff8aefb35a /src/cmd/9term | |
parent | 66e0b4a06c09de509f5ffb56bfb23a458781cd61 (diff) | |
download | plan9port-911dcfd317786043c1f3d406207d4aba50891970.tar.gz plan9port-911dcfd317786043c1f3d406207d4aba50891970.tar.bz2 plan9port-911dcfd317786043c1f3d406207d4aba50891970.zip |
9term: Use acme colors.
Diffstat (limited to 'src/cmd/9term')
-rw-r--r-- | src/cmd/9term/wind.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/cmd/9term/wind.c b/src/cmd/9term/wind.c index 7dc20443..13be22bc 100644 --- a/src/cmd/9term/wind.c +++ b/src/cmd/9term/wind.c @@ -53,9 +53,12 @@ wmk(Image *i, Mousectl *mc, Channel *ck, Channel *cctl, int scrolling) /* greys are multiples of 0x11111100+0xFF, 14* being palest */ grey = allocimage(display, Rect(0,0,1,1), CMAP8, 1, 0xEEEEEEFF); darkgrey = allocimage(display, Rect(0,0,1,1), CMAP8, 1, 0x666666FF); - cols[BACK] = display->white; - cols[HIGH] = allocimage(display, Rect(0,0,1,1), CMAP8, 1, 0xCCCCCCFF); - cols[BORD] = allocimage(display, Rect(0,0,1,1), CMAP8, 1, 0x999999FF); + //cols[BACK] = display->white; + cols[BACK] = allocimagemix(display, DPaleyellow, DWhite); + //cols[HIGH] = allocimage(display, Rect(0,0,1,1), CMAP8, 1, 0xCCCCCCFF); + cols[HIGH] = allocimage(display, Rect(0,0,1,1), screen->chan, 1, DDarkyellow); + //cols[BORD] = allocimage(display, Rect(0,0,1,1), CMAP8, 1, 0x999999FF); + cols[BORD] = allocimage(display, Rect(0,0,1,1), screen->chan, 1, DYellowgreen); cols[TEXT] = display->black; cols[HTEXT] = display->black; titlecol = allocimage(display, Rect(0,0,1,1), CMAP8, 1, DGreygreen); |