diff --git a/internal/tui/components/chat/sidebar/sidebar.go b/internal/tui/components/chat/sidebar/sidebar.go index ecb88e7d60dbaf09dfc2e88f789ed0057ee756fc..a01140417955c519b98b5d7f04773f8cb5b58de5 100644 --- a/internal/tui/components/chat/sidebar/sidebar.go +++ b/internal/tui/components/chat/sidebar/sidebar.go @@ -36,7 +36,7 @@ type FileHistory struct { latestVersion history.File } -const LogoHeightBreakpoint = 40 +const LogoHeightBreakpoint = 30 // Default maximum number of items to show in each section const ( @@ -689,7 +689,7 @@ func (m *sidebarCmp) filesBlock() string { if totalFilesWithChanges > maxFiles { remaining := totalFilesWithChanges - maxFiles fileList = append(fileList, - t.S().Base.Foreground(t.FgMuted).Render(fmt.Sprintf("… and %d more", remaining)), + t.S().Base.Foreground(t.FgSubtle).Render(fmt.Sprintf("…and %d more", remaining)), ) } @@ -777,7 +777,7 @@ func (m *sidebarCmp) lspBlock() string { if len(lsp) > maxLSPs { remaining := len(lsp) - maxLSPs lspList = append(lspList, - t.S().Base.Foreground(t.FgMuted).Render(fmt.Sprintf("… and %d more", remaining)), + t.S().Base.Foreground(t.FgSubtle).Render(fmt.Sprintf("…and %d more", remaining)), ) } @@ -834,7 +834,7 @@ func (m *sidebarCmp) mcpBlock() string { if len(mcps) > maxMCPs { remaining := len(mcps) - maxMCPs mcpList = append(mcpList, - t.S().Base.Foreground(t.FgMuted).Render(fmt.Sprintf("… and %d more", remaining)), + t.S().Base.Foreground(t.FgSubtle).Render(fmt.Sprintf("…and %d more", remaining)), ) }