feat(tui): scale up FUSION splash logo with 2× ANSI Shadow variant

Replace the Colossal "888" large-logo variant with a vertically doubled
ANSI Shadow render so the bigger splash keeps the same block-letter
aesthetic as the small variant — the prior variant looked stylistically
inconsistent next to the small block letters. 47 cols × 12 rows.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-04-24 22:56:41 -07:00
parent c039af066c
commit fde1acb3a5

View File

@@ -12,18 +12,22 @@ export const FUSION_LOGO_LINES = [
"╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═══╝",
];
// ANSI Shadow (extended) — ~70 cols × 10 rows. Same block-letter aesthetic
// as the small variant, scaled up by extending vertical bodies and widening
// letter cells. Used when the terminal has room for it.
// ANSI Shadow doubled vertically — each row of FUSION_LOGO_LINES rendered
// twice for a 2× taller block logo (47 cols × 12 rows). Preserves the same
// block-letter aesthetic; just scaled up. Used when the terminal has room.
export const FUSION_LOGO_LARGE_LINES = [
"███████╗ ██╗ ██╗ ███████╗ ██╗ ██████╗ ███╗ ██╗",
"██╔════╝ ██║ ██║ ██╔════╝ ██║ ██╔═══██╗ ████╗ ██",
"████║ ██║ ████║ ██║ ██║ ████╗ ██║",
"█████╗ ██║ ██║ ███████╗ ██║ ██║ ██║ ██║╚██╗██║",
"██╔══╝ ██║ ██║ ╚════██║ ██║ ██║ ██║ ██║ ╚████║",
"██║ ██║ ██║ ██║ ██║ ██║ ██║ ██║ ╚███║",
"██║ ╚██████╔═╝ ███████║ ██║ ╚██████╔╝ ██║ ╚██║",
"╚═╝ ╚═════╝ ╚══════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝",
"███████╗██╗ ██╗███████╗██╗ ██████╗ ███╗ ██╗",
"███████╗██╗ ██╗███████╗██╗ ██████╗ ███╗ ██",
"██╔════╝██║ ██║██╔════╝██║██╔═══██╗████╗ ██║",
"██╔════╝██║ ██║██╔════╝██║██╔═══██╗████╗ ██║",
"█████╗ ██║ ██║███████╗██║██║ ██║██╔██╗ ██║",
"█████╗ ██║ ██║███████╗██║██║ ██║██╔██╗ ██║",
"██╔═ ██║ ██║╚════██║██║██║ ██║██║╚██╗██║",
"██╔══╝ ██║ ██║╚════██║██║██║ ██║██║╚██╗██║",
"██║ ╚██████╔╝███████║██║╚██████╔╝██║ ╚████║",
"██║ ╚██████╔╝███████║██║╚██████╔╝██║ ╚████║",
"╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═══╝",
"╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═══╝",
];
export const FUSION_TAGLINE = "AI coding agent dashboard";