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 4085338918 - Show all commits

View File

@@ -24,36 +24,29 @@ function formatContextWindow(n: number): string {
}
/**
* Mosaic 3×3 icon — full grid of colored tiles
*
* Brand colors:
* blue (#2f80ff), purple (#8b5cf6), teal (#14b8a6),
* amber (#f59e0b), pink (#ec4899)
*
* Complementary fills:
* indigo (#6366f1), sky (#38bdf8), rose (#f472b6), green (#22c55e)
* Mosaic 3×3 icon — brand tiles with black gaps (windmill cross pattern)
*
* Layout:
* blue indigo purple
* sky pink rose
* amber green teal
* blue ·· purple
* ·· pink ··
* amber ·· teal
*/
function MosaicIcon() {
return (
<Box flexDirection="column" marginRight={1}>
<Text>
<Text color="#2f80ff"></Text>
<Text color="#6366f1"></Text>
<Text> </Text>
<Text color="#8b5cf6"></Text>
</Text>
<Text>
<Text color="#38bdf8"></Text>
<Text> </Text>
<Text color="#ec4899"></Text>
<Text color="#f472b6"></Text>
<Text> </Text>
</Text>
<Text>
<Text color="#f59e0b"></Text>
<Text color="#22c55e"></Text>
<Text> </Text>
<Text color="#14b8a6"></Text>
</Text>
</Box>