Skip to content

Commit d512103

Browse files
committed
style(theme): update lightMutedBlue color and use mutedBlue in UIElementNode
The lightMutedBlue color was updated to a more appropriate shade and UIElementNode now uses mutedBlue instead of textMuted for better visual consistency
1 parent 810b0d3 commit d512103

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cli/tui/routes/workflow/components/timeline/ui-element-node.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function UIElementNode(props: UIElementNodeProps) {
2222

2323
return (
2424
<box paddingLeft={1} paddingRight={1}>
25-
<text fg={themeCtx.theme.textMuted}>
25+
<text fg={themeCtx.theme.mutedBlue}>
2626
{separator} {props.uiElement.text} {separator}
2727
</text>
2828
</box>

src/cli/tui/shared/context/theme/codemachine.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"lightStep11": "#78716C",
3636
"lightStep12": "#292524",
3737
"lightSecondary": "#9333EA",
38-
"lightMutedBlue": "#6B5F52",
38+
"lightMutedBlue": "#6B7F8A",
3939
"lightPurple": "#7E22CE",
4040
"lightRed": "#C2410C",
4141
"lightGreen": "#15803D",

0 commit comments

Comments
 (0)