Make clients graphics use lighter random colors.
diff --git a/client.c b/client.c
index 934c7cd..4654de0 100644
--- a/client.c
+++ b/client.c
@@ -70,10 +70,10 @@
 set_random_color(cairo_t *cr)
 {
 	cairo_set_source_rgba(cr,
-			      (random() % 100) / 99.0,
-			      (random() % 100) / 99.0,
-			      (random() % 100) / 99.0,
-			      (random() % 100) / 99.0);
+			      0.5 + (random() % 50) / 49.0,
+			      0.5 + (random() % 50) / 49.0,
+			      0.5 + (random() % 50) / 49.0,
+			      0.5 + (random() % 100) / 99.0);
 }