From 03e8e3a8401a19c724f5d198adc6b17bafa0b728 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Thu, 8 Jan 2026 00:04:36 -0500 Subject: [PATCH] Try bold yellow for channel fingerprint color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/stegasoo/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stegasoo/cli.py b/src/stegasoo/cli.py index e88951f..f636229 100644 --- a/src/stegasoo/cli.py +++ b/src/stegasoo/cli.py @@ -857,7 +857,7 @@ def info(ctx, full): # Channel if channel_fingerprint: masked = f"{channel_fingerprint[:4]}••••••••{channel_fingerprint[-4:]}" - click.echo(f" Channel: \033[38;5;208m{masked}\033[0m") # Orange for private channel + click.echo(f" Channel: \033[1;33m{masked}\033[0m") # Bold yellow/orange for private channel else: click.echo(" Channel: \033[33mpublic\033[0m")