summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/DetailedMessagesDisplay.tsx
diff options
context:
space:
mode:
authorMiguel Solorio <[email protected]>2025-08-15 15:39:54 -0700
committerGitHub <[email protected]>2025-08-15 22:39:54 +0000
commit3c0af3654ac5491e79c6f9b55de5debf0e1e13c1 (patch)
tree51eabe9544038b06b0c0a78d31dfa25232de3754 /packages/cli/src/ui/components/DetailedMessagesDisplay.tsx
parent5246aa11f49108a22d4ba306a49b1af79153cac1 (diff)
Update semantic color tokens (#6253)
Co-authored-by: jacob314 <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/components/DetailedMessagesDisplay.tsx')
-rw-r--r--packages/cli/src/ui/components/DetailedMessagesDisplay.tsx19
1 files changed, 10 insertions, 9 deletions
diff --git a/packages/cli/src/ui/components/DetailedMessagesDisplay.tsx b/packages/cli/src/ui/components/DetailedMessagesDisplay.tsx
index 2bc5d392..055c87b9 100644
--- a/packages/cli/src/ui/components/DetailedMessagesDisplay.tsx
+++ b/packages/cli/src/ui/components/DetailedMessagesDisplay.tsx
@@ -6,7 +6,7 @@
import React from 'react';
import { Box, Text } from 'ink';
-import { Colors } from '../colors.js';
+import { theme } from '../semantic-colors.js';
import { ConsoleMessageItem } from '../types.js';
import { MaxSizedBox } from './shared/MaxSizedBox.js';
@@ -31,31 +31,32 @@ export const DetailedMessagesDisplay: React.FC<
flexDirection="column"
marginTop={1}
borderStyle="round"
- borderColor={Colors.Gray}
+ borderColor={theme.border.default}
paddingX={1}
width={width}
>
<Box marginBottom={1}>
- <Text bold color={Colors.Foreground}>
- Debug Console <Text color={Colors.Gray}>(ctrl+o to close)</Text>
+ <Text bold color={theme.text.primary}>
+ Debug Console{' '}
+ <Text color={theme.text.secondary}>(ctrl+o to close)</Text>
</Text>
</Box>
<MaxSizedBox maxHeight={maxHeight} maxWidth={width - borderAndPadding}>
{messages.map((msg, index) => {
- let textColor = Colors.Foreground;
+ let textColor = theme.text.primary;
let icon = '\u2139'; // Information source (ℹ)
switch (msg.type) {
case 'warn':
- textColor = Colors.AccentYellow;
+ textColor = theme.status.warning;
icon = '\u26A0'; // Warning sign (⚠)
break;
case 'error':
- textColor = Colors.AccentRed;
+ textColor = theme.status.error;
icon = '\u2716'; // Heavy multiplication x (✖)
break;
case 'debug':
- textColor = Colors.Gray; // Or Colors.Gray
+ textColor = theme.text.secondary;
icon = '\u1F50D'; // Left-pointing magnifying glass (????)
break;
case 'log':
@@ -70,7 +71,7 @@ export const DetailedMessagesDisplay: React.FC<
<Text color={textColor} wrap="wrap">
{msg.content}
{msg.count && msg.count > 1 && (
- <Text color={Colors.Gray}> (x{msg.count})</Text>
+ <Text color={theme.text.secondary}> (x{msg.count})</Text>
)}
</Text>
</Box>