Follow-up to commit
713892c162f0 ("Number the fingers by slot in debug-gui")
this changes the colors slightly for each finger, making it easier to
track visually.
Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1103>
if (!w->evdev.slots[i].active)
continue;
- cairo_set_source_rgb(cr, .2, .2, .8);
+ cairo_set_source_rgb(cr,
+ .2 + .2 * (i % 5),
+ .2 + .2 * (i % 5),
+ .8 - .2 * (i % 5));
x = w->evdev.slots[i].x;
y = w->evdev.slots[i].y;
x = 1.0 * (x - ax->minimum)/width * outline_width;