From f3d2defa9ee5d04418615bc1a504a717474f23d3 Mon Sep 17 00:00:00 2001 From: jkoci Date: Sun, 2 Jul 2023 11:50:07 +0200 Subject: [PATCH] Revert greyscale coloring --- postoffice/post-office.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/postoffice/post-office.py b/postoffice/post-office.py index d26c9a2..f620978 100644 --- a/postoffice/post-office.py +++ b/postoffice/post-office.py @@ -44,10 +44,10 @@ for box in postboxes: if "#" in box.owner: continue - color = "dimgrey" + color = "green" label = "Available" if box.owner: - color = "lightgrey" + color = "red" label = "Occupied" offset = 0 @@ -67,7 +67,7 @@ for box in postboxes: texts.append( ax.annotate( box.owner, - (box.x + 0.5, box.z + offset + 0.2), + (box.x + 0.5, box.z + offset + 0.25), color="black", ha="center", va="center",