summary refs log tree commit diff
path: root/bin/scheme.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/scheme.c')
-rw-r--r--bin/scheme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/scheme.c b/bin/scheme.c
index 2f71c4d1..8f88ef6f 100644
--- a/bin/scheme.c
+++ b/bin/scheme.c
@@ -158,7 +158,7 @@ static struct Ansi genAnsi(void) {
     ansi.dark[BLACK] = p(ansi.light[BLACK], 0.0, 1.0, 0.3);
     ansi.dark[WHITE] = p(ansi.light[WHITE], 0.0, 1.0, 0.6);
     for (int i = RED; i < WHITE; ++i) {
-        ansi.dark[i] = p(ansi.light[i], 0.0, 1.0, 0.7);
+        ansi.dark[i] = p(ansi.light[i], 0.0, 1.0, 0.8);
     }
     return ansi;
 }