Merge pull request #1476 from afarber/1461-yolo-color-change

feat(cli): use dim colors for YOLO/auto-accept mode borders
This commit is contained in:
tanzhenxin 2026-01-21 18:06:52 +08:00 committed by GitHub
commit 3ece0e3c3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 68 additions and 2 deletions

View file

@ -714,10 +714,10 @@ export const InputPrompt: React.FC<InputPromptProps> = ({
statusColor = theme.ui.symbol;
statusText = t('Shell mode');
} else if (showYoloStyling) {
statusColor = theme.status.error;
statusColor = theme.status.errorDim;
statusText = t('YOLO mode');
} else if (showAutoAcceptStyling) {
statusColor = theme.status.warning;
statusColor = theme.status.warningDim;
statusText = t('Accepting edits');
}