fix(tui): keep thinking color theme-neutral

This commit is contained in:
Brooklyn Nicholson 2026-04-26 13:54:12 -05:00
parent 015f6c825d
commit 2be5e181a9

View file

@ -646,22 +646,22 @@ export const Thinking = memo(function Thinking({
{preview ? ( {preview ? (
mode === 'full' ? ( mode === 'full' ? (
lines.map((line, index) => ( lines.map((line, index) => (
<Text color={t.color.cornsilk} key={index} wrap="wrap-trim"> <Text color={t.color.dim} key={index} wrap="wrap-trim">
{line || ' '} {line || ' '}
{index === lines.length - 1 ? ( {index === lines.length - 1 ? (
<StreamCursor color={t.color.cornsilk} streaming={streaming} visible={active} /> <StreamCursor color={t.color.dim} streaming={streaming} visible={active} />
) : null} ) : null}
</Text> </Text>
)) ))
) : ( ) : (
<Text color={t.color.cornsilk} wrap="truncate-end"> <Text color={t.color.dim} wrap="truncate-end">
{preview} {preview}
<StreamCursor color={t.color.cornsilk} streaming={streaming} visible={active} /> <StreamCursor color={t.color.dim} streaming={streaming} visible={active} />
</Text> </Text>
) )
) : ( ) : (
<Text color={t.color.cornsilk}> <Text color={t.color.dim}>
<StreamCursor color={t.color.cornsilk} streaming={streaming} visible={active} /> <StreamCursor color={t.color.dim} streaming={streaming} visible={active} />
</Text> </Text>
)} )}
</Box> </Box>