From c6304f1e9266db6bac2ca9bddb2837c61c42e1f2 Mon Sep 17 00:00:00 2001 From: Ed Zynda Date: Fri, 27 Mar 2026 21:36:21 +0300 Subject: [PATCH] refactor(ui): use Italic typography for thinking blocks Change thinking content from H6 to Italic for more subdued, secondary visual appearance. Makes reasoning text less prominent than main assistant responses. --- internal/ui/stream.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/ui/stream.go b/internal/ui/stream.go index c8bbdaab..03b0ac75 100644 --- a/internal/ui/stream.go +++ b/internal/ui/stream.go @@ -533,9 +533,9 @@ func (s *StreamComponent) renderReasoningBlock(reasoning string) string { lines = lines[len(lines)-maxCollapsedLines:] } - // Main content using H6 (subtitle) for visual distinction. + // Main content using Italic for subdued visual distinction. content := strings.Join(lines, "\n") - parts = append(parts, s.ty.H6(content)) + parts = append(parts, s.ty.Italic(content)) // Duration footer without indentation. var duration time.Duration