From eba10df8029694955cc82ce77e27e09fb0e7eec2 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 13 Jan 2021 15:17:47 -0500 Subject: Increase dark white brightness slightly --- bin/scheme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/scheme.c b/bin/scheme.c index 9acb2e31..b921a77e 100644 --- a/bin/scheme.c +++ b/bin/scheme.c @@ -92,7 +92,7 @@ static void generate(void) { light[White] = x(R, +45.0, 0.3, 0.8); dark[Black] = x(light[Black], 0.0, 1.0, 0.3); - dark[White] = x(light[White], 0.0, 1.0, 0.7); + dark[White] = x(light[White], 0.0, 1.0, 0.75); for (uint i = Red; i < White; ++i) { dark[i] = x(light[i], 0.0, 1.0, 0.8); } -- cgit 1.4.1 f71cab0339c1483d359c1dc114'>this commit dontfiles
summary refs log tree commit diff
path: root/home/.config (unfollow)
Commit message (Collapse)Author
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
cwm still needs a lot more rebinding, and I need to actually look at its other options. xterm definitely still needs some configuration, but I at least managed to get it to use a decent looking font. Very happy that OpenBSD includes Luxi Mono, which is what my usual font, Go Mono, is based on anyway. Still missing is xmodmap and such.
2021-02-06Add xterm output to schemeJune McEnroe