From e9b26c7c8b2eaeea03b753d9125f6092de7d26ae Mon Sep 17 00:00:00 2001 From: underthestars-zhy Date: Mon, 8 Jun 2026 17:21:52 -0700 Subject: [PATCH] style(photon): Colorize iMessage number box in setup output --- plugins/platforms/photon/cli.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/plugins/platforms/photon/cli.py b/plugins/platforms/photon/cli.py index 924b70b01fc..1ddf6014d30 100644 --- a/plugins/platforms/photon/cli.py +++ b/plugins/platforms/photon/cli.py @@ -223,10 +223,13 @@ def _cmd_setup(args: argparse.Namespace) -> int: print(f" (could not fetch the assigned line: {e})", file=sys.stderr) if agent_number: print() - print("┌─ Your agent's iMessage number ───────────────────────────────") - print(f"│ 📱 {agent_number}") - print("│ Text this number from your phone to talk to your agent.") - print("└──────────────────────────────────────────────────────────────") + print(color("┌─ Your agent's iMessage number ───────────────────────────────", Colors.GREEN)) + print( + color("│ 📱 ", Colors.GREEN) + + color(str(agent_number), Colors.GREEN, Colors.BOLD) + ) + print(color("│ Text this number from your phone to talk to your agent.", Colors.GREEN)) + print(color("└──────────────────────────────────────────────────────────────", Colors.GREEN)) else: print(" No iMessage line assigned yet — check the Photon dashboard.")