Use dim colors for YOLO/auto-accept mode borders

This commit is contained in:
Alexander Farber 2026-01-13 07:48:47 +01:00
parent 0681c71894
commit 5d20848577
No known key found for this signature in database
18 changed files with 68 additions and 2 deletions

View file

@ -700,10 +700,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');
}