aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-18 04:25:51 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-18 04:25:51 -0400
commita0a87c0a32fd891efcaf82f8d49b7221fa1ffe2b (patch)
tree0cea90a2609db69bc5271966c86074bed39440ce /src
parent0b9b047188bc61043095839d2af0e414eced4688 (diff)
downloadfujinet-chat-a0a87c0a32fd891efcaf82f8d49b7221fa1ffe2b.tar.gz
Brighten up default BG and text color, because we're about to use COLOR2 for a 4th statusbar color.
Diffstat (limited to 'src')
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index a27beec..068322d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -169,7 +169,8 @@ void main(void) {
OS.shflok = 0; // turn off shift-lock.
OS.soundr = 0; // Turn off SIO beeping sound
OS.color2 = conf->colors[0]; /* text BG, user-selected */
- OS.color1 = (conf->colors[1] & 0x0f) | 0xc0; /* green (at user's brightness) */
+ // OS.color1 = (conf->colors[1] & 0x0f) | 0xc0; /* green (at user's brightness) */
+ OS.color1 = conf->colors[1];
OS.color0 = 0x06; /* grey for inactive */
OS.color3 = 0x46; /* red for highlight (not used yet) */
OS.noclik = conf->disable_keyclick;