diff options
| author | Miguel Solorio <[email protected]> | 2025-06-05 14:35:47 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-05 14:35:47 -0700 |
| commit | 8a0a2523ca50eabe1e0701ac049e2e5c7f61791a (patch) | |
| tree | ae6542307d587a731f0a887b16f2776074f7177e /packages/cli/src/ui/components/LoadingIndicator.tsx | |
| parent | 2285bba66eced3eee2b97ece250ec6e590f76efc (diff) | |
Allow themes to theme the UI (#769)
Diffstat (limited to 'packages/cli/src/ui/components/LoadingIndicator.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/LoadingIndicator.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/ui/components/LoadingIndicator.tsx b/packages/cli/src/ui/components/LoadingIndicator.tsx index 6ff4dac8..61b74b89 100644 --- a/packages/cli/src/ui/components/LoadingIndicator.tsx +++ b/packages/cli/src/ui/components/LoadingIndicator.tsx @@ -40,7 +40,7 @@ export const LoadingIndicator: React.FC<LoadingIndicatorProps> = ({ {currentLoadingPhrase && ( <Text color={Colors.AccentPurple}>{currentLoadingPhrase}</Text> )} - <Text color={Colors.SubtleComment}> + <Text color={Colors.Gray}> {streamingState === StreamingState.WaitingForConfirmation ? '' : ` (esc to cancel, ${elapsedTime}s)`} |
