From 7ff2326efbdb7ba2756ae3920db9d249eb4777b3 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 20 Jan 2026 14:08:18 +1000 Subject: [PATCH] test: change the gesture state color to normal yellow The current color is unreadable on my screens and since no-one else really looks at this much, let's change it for my benefit. Part-of: --- test/litest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/litest.c b/test/litest.c index 5e8f65aa..d7e88ac0 100644 --- a/test/litest.c +++ b/test/litest.c @@ -1348,7 +1348,7 @@ litest_log_handler(struct libinput *libinput, else if (strstr(format, "edge-scroll:")) color = ANSI_BRIGHT_GREEN; else if (strstr(format, "gesture:")) - color = ANSI_BRIGHT_YELLOW; + color = ANSI_YELLOW; else if (strstr(msg, "Plugin:")) color = ANSI_BRIGHT_CYAN;