diff options
Diffstat (limited to 'packages/cli/src/ui/components/Help.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/Help.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/ui/components/Help.tsx b/packages/cli/src/ui/components/Help.tsx index 74d03573..92e94a8a 100644 --- a/packages/cli/src/ui/components/Help.tsx +++ b/packages/cli/src/ui/components/Help.tsx @@ -31,7 +31,7 @@ export const Help: React.FC<Help> = ({ commands }) => ( {commands .filter((command) => command.description) .map((command: SlashCommand) => ( - <Text key={command.name} color={Colors.SubtleComment}> + <Text key={command.name} color={Colors.Gray}> <Text bold color={Colors.AccentPurple}> {' '} /{command.name} @@ -39,7 +39,7 @@ export const Help: React.FC<Help> = ({ commands }) => ( {command.description && ' - ' + command.description} </Text> ))} - <Text color={Colors.SubtleComment}> + <Text color={Colors.Gray}> <Text bold color={Colors.AccentPurple}> {' '} !{' '} |
