mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 20:50:34 +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
|
|
@ -57,7 +57,7 @@ export function SuggestionsDisplay({
|
|||
{visibleSuggestions.map((suggestion, index) => {
|
||||
const originalIndex = startIndex + index;
|
||||
const isActive = originalIndex === activeIndex;
|
||||
const textColor = isActive ? Colors.AccentPurple : Colors.SubtleComment;
|
||||
const textColor = isActive ? Colors.AccentPurple : Colors.Gray;
|
||||
|
||||
return (
|
||||
<Box key={`${suggestion}-${originalIndex}`} width={width}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue