summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/scheme.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/scheme.c b/bin/scheme.c
index 0d194647..257b76ea 100644
--- a/bin/scheme.c
+++ b/bin/scheme.c
@@ -147,19 +147,19 @@ static struct Ansi genAnsi(void) {
         .light = {
             [BLACK]   = p(R, +45.0, 0.3, 0.3),
             [RED]     = p(R, +10.0, 0.9, 0.8),
-            [GREEN]   = p(G, -55.0, 0.9, 0.7),
-            [YELLOW]  = p(Y, -15.0, 0.9, 0.9),
-            [BLUE]    = p(B, -55.0, 0.4, 0.6),
+            [GREEN]   = p(G, -55.0, 0.8, 0.6),
+            [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, -45.0, 0.5, 0.7),
-            [WHITE]   = p(R, +45.0, 0.3, 0.9),
+            [CYAN]    = p(C, -55.0, 0.5, 0.6),
+            [WHITE]   = p(R, +45.0, 0.3, 0.8),
         },
     };
     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[WHITE] = p(ansi.light[WHITE], 0.0, 1.0, 0.6);
     return ansi;
 }
 
@@ -169,7 +169,7 @@ static struct Terminal genTerminal(struct Ansi ansi) {
         .background = p(ansi.dark[BLACK],    0.0, 1.0, 0.9),
         .text       = p(ansi.light[WHITE],   0.0, 1.0, 0.9),
         .bold       = p(ansi.light[WHITE],   0.0, 1.0, 1.0),
-        .selection  = p(ansi.light[RED],   +10.0, 1.0, 1.0),
+        .selection  = p(ansi.light[RED],   +10.0, 1.0, 0.8),
         .cursor     = p(ansi.dark[WHITE],    0.0, 1.0, 0.7),
     };
 }
ig/cwm/cwmrc?id=bc9314aebda5e161c79da0309b555b8df80b2561&follow=1'>Add bindings for brightness controlJune McEnroe 2021-02-07Set X key repeat rateJune McEnroe 2021-02-07Bump font size to 12June McEnroe 2021-02-07Fully configure and rebind cwmJune McEnroe 2021-02-07Add BintiJune McEnroe 2021-02-07Finish configuring xtermJune McEnroe 2021-02-06Enable tapping, reverse scroll, set scaling in wsconsctlJune McEnroe 2021-02-06Set root window to black on purple snowJune McEnroe 2021-02-06Add xmodmap configurationJune McEnroe 2021-02-06Add initial OpenBSD X configurationJune McEnroe 2021-02-06Add xterm output to schemeJune McEnroe