Skip to content

Commit 027b4d3

Browse files
committed
🤖 fix: restore default theme runtime colors
Reverts the runtime icon colors in default light/dark themes to match the original Tailwind values (blue-500, purple-500) exactly, avoiding visual regression. Solarized themes keep the new solarized-palette values. _Generated with mux_
1 parent 822fb5e commit 027b4d3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/browser/styles/globals.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@
6262
--color-thinking-mode-light: hsl(271 76% 65%);
6363
--color-thinking-border: hsl(271 76% 53%);
6464

65-
/* Runtime icon colors */
66-
--color-runtime-ssh: hsl(207 82% 51%); /* blue */
67-
--color-runtime-worktree: hsl(271 76% 53%); /* purple */
68-
--color-runtime-local: hsl(0 0% 60%); /* gray */
65+
/* Runtime icon colors (matches Tailwind blue-500/purple-500) */
66+
--color-runtime-ssh: #3b82f6;
67+
--color-runtime-worktree: #a855f7;
68+
--color-runtime-local: hsl(0 0% 60%); /* matches --color-muted-foreground */
6969

7070
/* Background & Layout */
7171
--color-background: hsl(0 0% 12%);
@@ -305,10 +305,10 @@
305305
--color-thinking-mode-light: hsl(271 70% 62%);
306306
--color-thinking-border: hsl(271 70% 46%);
307307

308-
/* Runtime icon colors */
309-
--color-runtime-ssh: hsl(207 82% 42%);
310-
--color-runtime-worktree: hsl(271 70% 46%);
311-
--color-runtime-local: hsl(210 14% 48%);
308+
/* Runtime icon colors (matches Tailwind blue-500/purple-500) */
309+
--color-runtime-ssh: #3b82f6;
310+
--color-runtime-worktree: #a855f7;
311+
--color-runtime-local: hsl(210 14% 48%); /* matches --color-muted-foreground */
312312

313313
--color-background: hsl(210 33% 98%);
314314
--color-background-secondary: hsl(210 36% 95%);

0 commit comments

Comments
 (0)