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/utils/MarkdownDisplay.tsx | |
| parent | 2285bba66eced3eee2b97ece250ec6e590f76efc (diff) | |
Allow themes to theme the UI (#769)
Diffstat (limited to 'packages/cli/src/ui/utils/MarkdownDisplay.tsx')
| -rw-r--r-- | packages/cli/src/ui/utils/MarkdownDisplay.tsx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/packages/cli/src/ui/utils/MarkdownDisplay.tsx b/packages/cli/src/ui/utils/MarkdownDisplay.tsx index d93b5be2..1eda45d3 100644 --- a/packages/cli/src/ui/utils/MarkdownDisplay.tsx +++ b/packages/cli/src/ui/utils/MarkdownDisplay.tsx @@ -121,7 +121,7 @@ const MarkdownDisplayInternal: React.FC<MarkdownDisplayProps> = ({ break; case 4: headerNode = ( - <Text italic color={Colors.SubtleComment}> + <Text italic color={Colors.Gray}> <RenderInline text={headerText} /> </Text> ); @@ -358,9 +358,7 @@ const RenderCodeBlockInternal: React.FC<RenderCodeBlockProps> = ({ // Not enough space to even show the message meaningfully return ( <Box padding={CODE_BLOCK_PADDING}> - <Text color={Colors.SubtleComment}> - ... code is being written ... - </Text> + <Text color={Colors.Gray}>... code is being written ...</Text> </Box> ); } @@ -372,7 +370,7 @@ const RenderCodeBlockInternal: React.FC<RenderCodeBlockProps> = ({ return ( <Box flexDirection="column" padding={CODE_BLOCK_PADDING}> {colorizedTruncatedCode} - <Text color={Colors.SubtleComment}>... generating more ...</Text> + <Text color={Colors.Gray}>... generating more ...</Text> </Box> ); } |
