mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 04:30:48 +00:00
Make ui/colors refelect the current theme.
This commit is contained in:
parent
105c20146c
commit
cf89c030d0
11 changed files with 903 additions and 799 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue