fix(tui): dim learning note color

Use the active theme dim color for learning notes so they stay subtle on dark skins instead of inheriting the bright cornsilk text color.
This commit is contained in:
Brooklyn Nicholson
2026-04-27 13:47:37 -05:00
parent 8623a7739d
commit 46b8f0b4d6

View File

@@ -97,7 +97,7 @@ export const MessageLine = memo(function MessageLine({
if (msg.kind === 'learning') {
return (
<Box marginLeft={3} marginTop={1}>
<Text color={t.color.cornsilk} dimColor italic>
<Text color={t.color.dim} italic>
{msg.text}
</Text>
</Box>