summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Footer.tsx
diff options
context:
space:
mode:
authorMiguel Solorio <[email protected]>2025-06-05 14:35:47 -0700
committerGitHub <[email protected]>2025-06-05 14:35:47 -0700
commit8a0a2523ca50eabe1e0701ac049e2e5c7f61791a (patch)
treeae6542307d587a731f0a887b16f2776074f7177e /packages/cli/src/ui/components/Footer.tsx
parent2285bba66eced3eee2b97ece250ec6e590f76efc (diff)
Allow themes to theme the UI (#769)
Diffstat (limited to 'packages/cli/src/ui/components/Footer.tsx')
-rw-r--r--packages/cli/src/ui/components/Footer.tsx14
1 files changed, 5 insertions, 9 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx
index 46d669b7..ea83a031 100644
--- a/packages/cli/src/ui/components/Footer.tsx
+++ b/packages/cli/src/ui/components/Footer.tsx
@@ -40,9 +40,7 @@ export const Footer: React.FC<FooterProps> = ({
<Box>
<Text color={Colors.LightBlue}>
{shortenPath(tildeifyPath(targetDir), 70)}
- {branchName && (
- <Text color={Colors.SubtleComment}> ({branchName}*)</Text>
- )}
+ {branchName && <Text color={Colors.Gray}> ({branchName}*)</Text>}
</Text>
{debugMode && (
<Text color={Colors.AccentRed}>
@@ -65,13 +63,11 @@ export const Footer: React.FC<FooterProps> = ({
) : process.env.SANDBOX === 'sandbox-exec' ? (
<Text color={Colors.AccentYellow}>
sandbox-exec{' '}
- <Text color={Colors.SubtleComment}>
- ({process.env.SEATBELT_PROFILE})
- </Text>
+ <Text color={Colors.Gray}>({process.env.SEATBELT_PROFILE})</Text>
</Text>
) : (
<Text color={Colors.AccentRed}>
- no sandbox <Text color={Colors.SubtleComment}>(see README)</Text>
+ no sandbox <Text color={Colors.Gray}>(see README)</Text>
</Text>
)}
</Box>
@@ -81,7 +77,7 @@ export const Footer: React.FC<FooterProps> = ({
<Text color={Colors.AccentBlue}> {model} </Text>
{corgiMode && (
<Text>
- <Text color={Colors.SubtleComment}>| </Text>
+ <Text color={Colors.Gray}>| </Text>
<Text color={Colors.AccentRed}>▼</Text>
<Text color={Colors.Foreground}>(´</Text>
<Text color={Colors.AccentRed}>ᴥ</Text>
@@ -91,7 +87,7 @@ export const Footer: React.FC<FooterProps> = ({
)}
{!showErrorDetails && errorCount > 0 && (
<Box>
- <Text color={Colors.SubtleComment}>| </Text>
+ <Text color={Colors.Gray}>| </Text>
<ConsoleSummaryDisplay errorCount={errorCount} />
</Box>
)}