Allow themes to theme the UI (#769)

This commit is contained in:
Miguel Solorio 2025-06-05 14:35:47 -07:00 committed by GitHub
parent 2285bba66e
commit 8a0a2523ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 533 additions and 385 deletions

View file

@ -25,7 +25,7 @@ export const ToolGroupMessage: React.FC<ToolGroupMessageProps> = ({
const hasPending = !toolCalls.every(
(t) => t.status === ToolCallStatus.Success,
);
const borderColor = hasPending ? Colors.AccentYellow : Colors.SubtleComment;
const borderColor = hasPending ? Colors.AccentYellow : Colors.Gray;
const staticHeight = /* border */ 2 + /* marginBottom */ 1;