mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 16:57:46 +00:00
Make ui/colors refelect the current theme.
This commit is contained in:
committed by
N. Taylor Mullen
parent
105c20146c
commit
cf89c030d0
@@ -30,7 +30,10 @@ export const Footer: React.FC<FooterProps> = ({
|
||||
<Text color={Colors.SubtleComment}>
|
||||
{queryLength === 0 ? '? for shortcuts' : ''}
|
||||
{debugMode && (
|
||||
<Text color="red"> {debugMessage || 'Running in debug mode.'}</Text>
|
||||
<Text color={Colors.AccentRed}>
|
||||
{' '}
|
||||
{debugMessage || 'Running in debug mode.'}
|
||||
</Text>
|
||||
)}
|
||||
</Text>
|
||||
</Box>
|
||||
@@ -45,7 +48,7 @@ export const Footer: React.FC<FooterProps> = ({
|
||||
{process.env.SANDBOX ? (
|
||||
<Text color="green"> {process.env.SANDBOX} </Text>
|
||||
) : (
|
||||
<Text color="red"> WARNING: OUTSIDE SANDBOX </Text>
|
||||
<Text color={Colors.AccentRed}> WARNING: OUTSIDE SANDBOX </Text>
|
||||
)}
|
||||
</Box>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user