Update shell tool call colors for confirmed actions (#11126)

This commit is contained in:
Miguel Solorio
2025-10-15 10:03:10 -07:00
committed by GitHub
parent 4f17eae5cc
commit d38ab07939
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -170,7 +170,7 @@ export const Footer: React.FC = () => {
)} )}
{!showErrorDetails && errorCount > 0 && ( {!showErrorDetails && errorCount > 0 && (
<Box paddingLeft={1} flexDirection="row"> <Box paddingLeft={1} flexDirection="row">
<Text color={theme.ui.symbol}>| </Text> <Text color={theme.ui.comment}>| </Text>
<ConsoleSummaryDisplay errorCount={errorCount} /> <ConsoleSummaryDisplay errorCount={errorCount} />
</Box> </Box>
)} )}
@@ -51,7 +51,7 @@ export const ToolGroupMessage: React.FC<ToolGroupMessageProps> = ({
(t) => t.name === SHELL_COMMAND_NAME || t.name === SHELL_NAME, (t) => t.name === SHELL_COMMAND_NAME || t.name === SHELL_NAME,
); );
const borderColor = const borderColor =
isShellCommand || isEmbeddedShellFocused (isShellCommand && hasPending) || isEmbeddedShellFocused
? theme.ui.symbol ? theme.ui.symbol
: hasPending : hasPending
? theme.status.warning ? theme.status.warning
@@ -18,7 +18,7 @@ export const UserShellMessage: React.FC<UserShellMessageProps> = ({ text }) => {
return ( return (
<Box> <Box>
<Text color={theme.text.link}>$ </Text> <Text color={theme.ui.symbol}>$ </Text>
<Text color={theme.text.primary}>{commandToDisplay}</Text> <Text color={theme.text.primary}>{commandToDisplay}</Text>
</Box> </Box>
); );