ui(cli): update expansion hint color in ToastDisplay

This commit is contained in:
Jarrod Whelan
2026-03-12 01:45:15 -07:00
parent 783e48c465
commit eb3976ed42

View File

@@ -77,7 +77,7 @@ export const ToastDisplay: React.FC = () => {
if (uiState.showIsExpandableHint) {
const action = uiState.constrainHeight ? 'show more' : 'collapse';
return (
<Text color={theme.text.accent}>
<Text color={theme.text.secondary}>
Press Ctrl+O to {action} lines of the last response
</Text>
);