Revert greyscale coloring

This commit is contained in:
jkoci 2023-07-02 11:50:07 +02:00
parent 4de345929c
commit f3d2defa9e

View File

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