mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 19:52:02 +00:00
Allow themes to theme the UI (#769)
This commit is contained in:
parent
2285bba66e
commit
8a0a2523ca
33 changed files with 533 additions and 385 deletions
|
|
@ -31,7 +31,7 @@ export const Help: React.FC<Help> = ({ commands }) => (
|
|||
{commands
|
||||
.filter((command) => command.description)
|
||||
.map((command: SlashCommand) => (
|
||||
<Text key={command.name} color={Colors.SubtleComment}>
|
||||
<Text key={command.name} color={Colors.Gray}>
|
||||
<Text bold color={Colors.AccentPurple}>
|
||||
{' '}
|
||||
/{command.name}
|
||||
|
|
@ -39,7 +39,7 @@ export const Help: React.FC<Help> = ({ commands }) => (
|
|||
{command.description && ' - ' + command.description}
|
||||
</Text>
|
||||
))}
|
||||
<Text color={Colors.SubtleComment}>
|
||||
<Text color={Colors.Gray}>
|
||||
<Text bold color={Colors.AccentPurple}>
|
||||
{' '}
|
||||
!{' '}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue