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",