diff options
Diffstat (limited to 'packages/cli/src/ui/components/messages/UserMessage.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/messages/UserMessage.tsx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/packages/cli/src/ui/components/messages/UserMessage.tsx b/packages/cli/src/ui/components/messages/UserMessage.tsx index 46f3d4a2..332cb0f4 100644 --- a/packages/cli/src/ui/components/messages/UserMessage.tsx +++ b/packages/cli/src/ui/components/messages/UserMessage.tsx @@ -15,11 +15,15 @@ interface UserMessageProps { export const UserMessage: React.FC<UserMessageProps> = ({ text }) => { const prefix = '> '; const prefixWidth = prefix.length; + const isSlashCommand = text.startsWith('/'); + + const textColor = isSlashCommand ? Colors.AccentPurple : Colors.Gray; + const borderColor = isSlashCommand ? Colors.AccentPurple : Colors.Gray; return ( <Box borderStyle="round" - borderColor={Colors.Gray} + borderColor={borderColor} flexDirection="row" paddingX={2} paddingY={0} @@ -27,10 +31,10 @@ export const UserMessage: React.FC<UserMessageProps> = ({ text }) => { alignSelf="flex-start" > <Box width={prefixWidth}> - <Text color={Colors.Gray}>{prefix}</Text> + <Text color={textColor}>{prefix}</Text> </Box> <Box flexGrow={1}> - <Text wrap="wrap" color={Colors.Gray}> + <Text wrap="wrap" color={textColor}> {text} </Text> </Box> |
