Skip to content

Commit 360c22d

Browse files
anandgupta42claude
andauthored
ui: improve TUI logo readability and add two-tone color (#20)
- Redesign M as 5-wide with visible V-valley to distinguish from A - Change E top from full bar to open-right, distinguishing from T - Fix T with full-width crossbar and I as narrow column - Fix D shape in CODE - Render CODE in theme.accent (purple) instead of theme.primary (peach) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c61575b commit 360c22d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/altimate-code/src/cli/cmd/tui/component/logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export function Logo() {
7676
{(line, index) => (
7777
<box flexDirection="row" gap={1}>
7878
<box flexDirection="row">{renderLine(line, theme.primary, false)}</box>
79-
<box flexDirection="row">{renderLine(logo.right[index()], theme.primary, true)}</box>
79+
<box flexDirection="row">{renderLine(logo.right[index()], theme.accent, true)}</box>
8080
</box>
8181
)}
8282
</For>

packages/altimate-code/src/cli/logo.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
export const logo = {
22
left: [
33
" ",
4-
"█▀▀█ █ ▀██▀ ▀██▀ █▄▄█ █▀▀█ ▀██▀ ████",
5-
"█^^█ █___ _██_ _██_ █ █ █^^█ _██_ █^^^",
6-
"▀ ▀ ▀▀▀▀ ~▀▀~ ▀▀▀▀ ▀ ▀ ▀ ▀ ~▀▀~ ▀▀▀▀",
4+
"█▀▀█ █ ████ ██ █▄ ▄█ █▀▀█ ████ █▀▀▀",
5+
"█^^█ █___ _██_ ██ █_^_█ █^^█ _██_ █^^^",
6+
"▀ ▀ ▀▀▀▀ ~▀▀~ ▀▀ ▀~~~▀ ▀ ▀ ~▀▀~ ▀▀▀▀",
77
],
88
right: [
99
" ",
10-
"█▀▀▀ █▀▀█ ██▀▀ ████",
10+
"█▀▀▀ █▀▀█ █▀▀█ █▀▀▀",
1111
"█___ █__█ █__█ █^^^",
1212
"▀▀▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀▀▀",
1313
],

0 commit comments

Comments
 (0)