feat(cli): TUI complete overhaul — components, sidebar, search, branding #157

Merged
jason.woltje merged 26 commits from feat/p7-tui-improvements into main 2026-03-15 22:17:20 +00:00
Showing only changes of commit c67ffe3e51 - Show all commits

View File

@@ -31,22 +31,24 @@ function formatContextWindow(n: number): string {
* ·· pink ··
* amber ·· teal
*/
// Two-space gap between tiles (extracted to avoid prettier collapse)
const GAP = ' ';
function MosaicIcon() {
return (
<Box flexDirection="column" marginRight={2}>
<Text>
<Text color="#2f80ff"></Text>
<Text> </Text>
<Text>{GAP}</Text>
<Text color="#8b5cf6"></Text>
</Text>
<Text>
<Text> </Text>
<Text>{GAP}</Text>
<Text color="#ec4899"></Text>
<Text> </Text>
</Text>
<Text>
<Text color="#f59e0b"></Text>
<Text> </Text>
<Text>{GAP}</Text>
<Text color="#14b8a6"></Text>
</Text>
</Box>