From a0a87c0a32fd891efcaf82f8d49b7221fa1ffe2b Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 18 Mar 2026 04:25:51 -0400 Subject: Brighten up default BG and text color, because we're about to use COLOR2 for a 4th statusbar color. --- config/config.c | 2 +- src/main.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/config.c b/config/config.c index b1f85c4..d48f54a 100644 --- a/config/config.c +++ b/config/config.c @@ -19,7 +19,7 @@ conf_t defaults = { "N:TCP://irc.libera.chat:6667", "FNChatTest", "FujiNetChat User", - { 0xc0, 0x0c }, + { 0xc2, 0xce }, { "#fnchat", { "##atari" }, { "#atari8" }, { 0 }, { 0 } }, { 0 }, /* extra_channels */ 3, /* alert_type, default = both */ 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; -- cgit v1.2.3