diff options
| author | Miguel Solorio <[email protected]> | 2025-08-15 15:39:54 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-15 22:39:54 +0000 |
| commit | 3c0af3654ac5491e79c6f9b55de5debf0e1e13c1 (patch) | |
| tree | 51eabe9544038b06b0c0a78d31dfa25232de3754 /packages/cli/src/ui/components/Footer.tsx | |
| parent | 5246aa11f49108a22d4ba306a49b1af79153cac1 (diff) | |
Update semantic color tokens (#6253)
Co-authored-by: jacob314 <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/components/Footer.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/Footer.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx index 09b94ec1..12dee691 100644 --- a/packages/cli/src/ui/components/Footer.tsx +++ b/packages/cli/src/ui/components/Footer.tsx @@ -72,7 +72,7 @@ export const Footer: React.FC<FooterProps> = ({ {vimMode && <Text color={theme.text.secondary}>[{vimMode}] </Text>} {nightly ? ( <Gradient colors={theme.ui.gradient}> - <Text> + <Text color={theme.text.primary}> {displayPath} {branchName && <Text> ({branchName}*)</Text>} </Text> @@ -132,8 +132,8 @@ export const Footer: React.FC<FooterProps> = ({ /> </Text> {corgiMode && ( - <Text> - <Text color={theme.ui.symbol}>| </Text> + <Text color={theme.text.primary}> + <Text color={theme.text.secondary}>| </Text> <Text color={theme.status.error}>▼</Text> <Text color={theme.text.primary}>(´</Text> <Text color={theme.status.error}>ᴥ</Text> @@ -143,7 +143,7 @@ export const Footer: React.FC<FooterProps> = ({ )} {!showErrorDetails && errorCount > 0 && ( <Box> - <Text color={theme.ui.symbol}>| </Text> + <Text color={theme.text.secondary}>| </Text> <ConsoleSummaryDisplay errorCount={errorCount} /> </Box> )} |
