From 5dd8a7090578d62519a2568b70989acc812c082a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Wed, 5 May 2021 16:33:52 +0200 Subject: [PATCH] box-drawing: swap amount of shade for LIGHT and DARK shades The DARK shade is the one most dense, and thus the one that looks brightest. --- box-drawing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/box-drawing.c b/box-drawing.c index eb486a75..ff1ccf22 100644 --- a/box-drawing.c +++ b/box-drawing.c @@ -1697,7 +1697,7 @@ draw_light_shade(struct buf *buf) } } } else - draw_pixman_shade(buf, 0x8000); + draw_pixman_shade(buf, 0x2000); } static void @@ -1727,7 +1727,7 @@ draw_dark_shade(struct buf *buf) } } } else - draw_pixman_shade(buf, 0x2000); + draw_pixman_shade(buf, 0x8000); } static void