Skip to content

Commit ac5e00c

Browse files
committed
style(tui): unify crab logo color to match project brand #DA7756
1 parent bdc2a91 commit ac5e00c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/tui/src/app.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,15 +646,15 @@ fn render_header(model_name: &str, working_dir: &str, area: Rect, buf: &mut Buff
646646
}
647647

648648
let fg = Style::default().fg(CRAB_COLOR);
649-
let eye = Style::default().fg(Color::White);
650649
let fg_bg = Style::default().fg(CRAB_COLOR).bg(CRAB_BG);
651650

652651
// Crab art — 3 rows: claws + eyes on top, shell in middle, legs below
652+
// All elements use CRAB_COLOR (#DA7756) matching the project logo
653653
let art_lines: [Line<'_>; 3] = [
654654
// Row 1: claws and eyes
655655
Line::from(vec![
656656
Span::styled(" ╱▔╲", fg),
657-
Span::styled(" ● ● ", eye),
657+
Span::styled(" ● ● ", fg),
658658
Span::styled("╱▔╲ ", fg),
659659
]),
660660
// Row 2: claws wrapping the shell

0 commit comments

Comments
 (0)