summary refs log tree commit diff
path: root/bin/scheme.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-03-31 18:53:00 -0400
committerJune McEnroe <june@causal.agency>2018-03-31 18:53:00 -0400
commit4fc0890345f96edabce4fcdbd58048390348b805 (patch)
treec59ae4b3870567847aa424051e1a98ef24a81f2b /bin/scheme.c
parentTweak colors in scheme (diff)
downloadsrc-4fc0890345f96edabce4fcdbd58048390348b805.tar.gz
src-4fc0890345f96edabce4fcdbd58048390348b805.zip
Tweak cyan further
It's actually green at this point.
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 240d5a3c..bdf2acd7 100644
--- a/bin/scheme.c
+++ b/bin/scheme.c
@@ -151,7 +151,7 @@ static struct Ansi genAnsi(void) {
             [YELLOW]  = p(Y, -20.0, 0.8, 0.8),
             [BLUE]    = p(B, -55.0, 0.4, 0.5),
             [MAGENTA] = p(M, +45.0, 0.4, 0.6),
-            [CYAN]    = p(C, -55.0, 0.5, 0.6),
+            [CYAN]    = p(C, -60.0, 0.3, 0.6),
             [WHITE]   = p(R, +45.0, 0.3, 0.8),
         },
     };
ffered readingJune McEnroe 2020-08-15Generate tags fileJune McEnroe 2020-08-15Just use CLOCK_MONOTONIC and clean up includesJune McEnroe 2020-08-15Reap childrenJune McEnroe 2020-08-14Implement serviceSignal, serviceStop, serviceRestartJune McEnroe 2020-08-14Reset restartInterval and restartDeadline on startJune McEnroe 2020-08-14Switch to timespec for timeoutsJune McEnroe 2020-08-14Implement serviceStartJune McEnroe 2020-08-14Flesh out Service structJune McEnroe 2020-08-14Build environment for servicesJune McEnroe 2020-08-14Implement spawntab parsingJune McEnroe 2020-08-14Open syslog, daemonize, write PIDJune McEnroe 2020-08-14Implement user and group lookupJune McEnroe 2020-08-14Add install targetJune McEnroe 2020-08-14Add spawnd skeletonJune McEnroe