There's a 15-color theme block at the top of moon_engine.py (lines 45–60: BG/ACC/GOLD/TEXT… under a # ── THEME ── comment).
I grepped the whole repo for these names — bare references, moon_engine.<name> attribute access, imports, even the hex values themselves — zero references anywhere. Then I commented the block out and ran the test suite: all 24 tests pass. So removing it breaks nothing.
I'll admit these color blocks are BEAUTIFUL, but I'm curious why they're living in a backend engine module instead of the web front-end. Leftover from something? Could they be cleaned up, or moved somewhere they'd actually be used?

There's a 15-color theme block at the top of
moon_engine.py(lines 45–60:BG/ACC/GOLD/TEXT… under a# ── THEME ──comment).I grepped the whole repo for these names — bare references,
moon_engine.<name>attribute access, imports, even the hex values themselves — zero references anywhere. Then I commented the block out and ran the test suite: all 24 tests pass. So removing it breaks nothing.I'll admit these color blocks are BEAUTIFUL, but I'm curious why they're living in a backend engine module instead of the web front-end. Leftover from something? Could they be cleaned up, or moved somewhere they'd actually be used?