Color enhancements (#680)

This commit is contained in:
Miguel Solorio 2025-06-02 11:20:58 -07:00 committed by GitHub
parent c5869db080
commit 33052018a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 49 additions and 15 deletions

View file

@ -64,10 +64,15 @@ export const Footer: React.FC<FooterProps> = ({
</Text>
) : process.env.SANDBOX === 'sandbox-exec' ? (
<Text color={Colors.AccentYellow}>
sandbox-exec ({process.env.SEATBELT_PROFILE})
sandbox-exec{' '}
<Text color={Colors.SubtleComment}>
({process.env.SEATBELT_PROFILE})
</Text>
</Text>
) : (
<Text color={Colors.AccentRed}>no sandbox (see README)</Text>
<Text color={Colors.AccentRed}>
no sandbox <Text color={Colors.SubtleComment}>(see README)</Text>
</Text>
)}
</Box>