mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-07 02:51:50 +00:00
fix(tui): keep thinking color theme-neutral
This commit is contained in:
parent
015f6c825d
commit
2be5e181a9
1 changed files with 6 additions and 6 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue