chore(banner): refresh ANSI logo constants - #272
Conversation
Assistant-model: gpt-5.3-codex
PR Review: chore(banner): refresh ANSI logo constantsThanks for the PR! I've reviewed the changes. Here's my feedback: SummaryThis PR updates the ✅ What looks good
🤔 Questions / Suggestions
📝 Minor Observations
VerdictThe change looks safe from a code quality perspective. My main recommendation is to verify the new logo renders correctly and confirm the dimension requirements are still met before merging. Would be helpful if you could share a screenshot of the new logo rendering in a terminal! 📸 |
There was a problem hiding this comment.
Pull request overview
This PR refreshes the ANSI logo constants used for the atomic CLI banner display. The changes replace both the true color (24-bit) and 256-color ANSI escape sequences with new logo artwork.
Changes:
- Replaced LOGO_TRUE_COLOR constant with new 10-line logo (previously ~34 lines)
- Replaced LOGO constant (256-color fallback) with corresponding new 10-line logo
- Both logos use the same new design with different color encoding schemes
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
chore(banner): refresh ANSI logo constants
Summary
Updated the ANSI-colored logo art constants for the atomic CLI banner, refreshing both the true color (24-bit) and 256-color fallback versions.
Changes
LOGO_TRUE_COLORconstant with updated 24-bit ANSI escape sequencesLOGOconstant with updated 256-color ANSI escape sequencesTechnical Details
The changes update the pre-computed banner assets in
src/utils/banner/constants.ts, maintaining compatibility with terminals that support different color depths while potentially improving the visual quality of the logo rendering.