aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c
index 135ce89..e5df909 100644
--- a/src/main.c
+++ b/src/main.c
@@ -161,10 +161,10 @@ void main(void) {
bell_type = conf->alert_type; /* TODO: have bell.s read staight from the struct */
OS.shflok = 0; // turn off shift-lock.
OS.soundr = 0; // Turn off SIO beeping sound
- OS.color2 = conf->colors[0];
- OS.color1 = conf->colors[1];
- OS.color0 = 0xca; /* green for active */
- OS.color3 = 0x48; /* red for highlight (not used yet) */
+ OS.color2 = conf->colors[0]; /* text BG, user-selected */
+ OS.color1 = (conf->colors[1] & 0x0f) | 0xc0; /* green (at user's brightness) */
+ OS.color0 = 0x06; /* grey for inactive */
+ OS.color3 = 0x46; /* red for highlight (not used yet) */
OS.noclik = conf->disable_keyclick;
hz = (GTIA_READ.pal & 0x0e) ? 60 : 50;