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: if "#" in box.owner:
continue continue
color = "dimgrey" color = "green"
label = "Available" label = "Available"
if box.owner: if box.owner:
color = "lightgrey" color = "red"
label = "Occupied" label = "Occupied"
offset = 0 offset = 0
@ -67,7 +67,7 @@ for box in postboxes:
texts.append( texts.append(
ax.annotate( ax.annotate(
box.owner, box.owner,
(box.x + 0.5, box.z + offset + 0.2), (box.x + 0.5, box.z + offset + 0.25),
color="black", color="black",
ha="center", ha="center",
va="center", va="center",