diff options
Diffstat (limited to 'packages/cli/src/ui/components/PrepareLabel.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/PrepareLabel.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/cli/src/ui/components/PrepareLabel.tsx b/packages/cli/src/ui/components/PrepareLabel.tsx index 652a77a6..e255d386 100644 --- a/packages/cli/src/ui/components/PrepareLabel.tsx +++ b/packages/cli/src/ui/components/PrepareLabel.tsx @@ -6,7 +6,7 @@ import React from 'react'; import { Text } from 'ink'; -import { Colors } from '../colors.js'; +import { theme } from '../semantic-colors.js'; interface PrepareLabelProps { label: string; @@ -21,7 +21,7 @@ export const PrepareLabel: React.FC<PrepareLabelProps> = ({ matchedIndex, userInput, textColor, - highlightColor = Colors.AccentYellow, + highlightColor = theme.status.warning, }) => { if ( matchedIndex === undefined || @@ -37,7 +37,7 @@ export const PrepareLabel: React.FC<PrepareLabelProps> = ({ const end = label.slice(matchedIndex + userInput.length); return ( - <Text> + <Text color={theme.text.primary}> <Text color={textColor}>{start}</Text> <Text color="black" bold backgroundColor={highlightColor}> {match} |
