botholomew 0.21.1 → 0.21.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -25,11 +25,11 @@ export function QueuePanel({ messages, selectedIndex }: QueuePanelProps) {
|
|
|
25
25
|
<Box
|
|
26
26
|
flexDirection="column"
|
|
27
27
|
borderStyle="round"
|
|
28
|
-
borderColor={theme.
|
|
28
|
+
borderColor={theme.queue}
|
|
29
29
|
paddingX={1}
|
|
30
30
|
>
|
|
31
31
|
<Box justifyContent="space-between">
|
|
32
|
-
<Text color={theme.
|
|
32
|
+
<Text color={theme.queue} bold>
|
|
33
33
|
{label}
|
|
34
34
|
</Text>
|
|
35
35
|
<Text dimColor>{hints}</Text>
|
|
@@ -42,7 +42,7 @@ export function QueuePanel({ messages, selectedIndex }: QueuePanelProps) {
|
|
|
42
42
|
// biome-ignore lint/suspicious/noArrayIndexKey: queue items can be duplicates, index is the stable identity
|
|
43
43
|
<Box key={i}>
|
|
44
44
|
<Text
|
|
45
|
-
color={isSelected ? theme.
|
|
45
|
+
color={isSelected ? theme.queue : undefined}
|
|
46
46
|
backgroundColor={isSelected ? theme.selectionBg : undefined}
|
|
47
47
|
bold={isSelected}
|
|
48
48
|
>
|
package/src/tui/theme.ts
CHANGED