The (pp1 graphics) library resolves colors via Racket's color database,
which doesn't support hex strings — they return #f causing a contract
violation on set-brush.
Replaced all hex colors with standard names:
#2121DE -> "medium blue", #FFB851 -> "gold", #FFB8FF -> "hot pink",
#FFFF00 -> "yellow", #FF0000 -> "red", #111111 -> "dark slate gray"
Also switched coins from draw-rectangle! to draw-ellipse! for round
dot rendering (arcade-accurate).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>