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.
This commit is contained in:
Daniel Eklöf 2021-05-05 16:33:52 +02:00
parent b280928084
commit 5dd8a70905
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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