diff options
| author | Jacob Richman <[email protected]> | 2025-08-15 20:18:31 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-16 03:18:31 +0000 |
| commit | 6c1373c33212e26521701acf73c0398721b3a881 (patch) | |
| tree | 6a00fb90c90b51a0c8285b21af7b174064ab6492 /packages/cli/src/ui/components/Footer.tsx | |
| parent | d57cc0b9306f0359482ef6e243308bcda2989007 (diff) | |
Revert "Update semantic color tokens" (#6365)
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 12dee691..09b94ec1 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 color={theme.text.primary}> + <Text> {displayPath} {branchName && <Text> ({branchName}*)</Text>} </Text> @@ -132,8 +132,8 @@ export const Footer: React.FC<FooterProps> = ({ /> </Text> {corgiMode && ( - <Text color={theme.text.primary}> - <Text color={theme.text.secondary}>| </Text> + <Text> + <Text color={theme.ui.symbol}>| </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.text.secondary}>| </Text> + <Text color={theme.ui.symbol}>| </Text> <ConsoleSummaryDisplay errorCount={errorCount} /> </Box> )} |
