Skip to content

Commit 506f919

Browse files
ithiria894claude
andcommitted
fix: tooltips use theme-aware vars — works in both light and dark mode (v0.13.11)
Replaced hardcoded surface-elevated fallback with --surface-inset and --text-primary. These adapt to light/dark theme automatically. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 782393e commit 506f919

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mcpware/claude-code-organizer",
3-
"version": "0.13.10",
3+
"version": "0.13.11",
44
"description": "Organize all your Claude Code memories, skills, MCP servers, commands, agents, rules, and hooks — see what loads globally vs per-project, then move items between scopes",
55
"type": "module",
66
"files": [

src/ui/style.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -376,9 +376,9 @@ body {
376376
top: calc(100% + 6px);
377377
left: 50%;
378378
transform: translateX(-50%);
379-
background: var(--surface-elevated, #1a1a2e);
380-
color: var(--text-primary, #eee);
381-
border: 1px solid var(--border-light, #333);
379+
background: var(--surface-inset);
380+
color: var(--text-primary);
381+
border: 1px solid var(--border-light);
382382
border-radius: 6px;
383383
padding: 6px 10px;
384384
font-size: 0.65rem;
@@ -990,9 +990,9 @@ body {
990990
position: absolute;
991991
top: calc(100% + 6px);
992992
left: 0;
993-
background: var(--surface-elevated, #1a1a2e);
994-
color: var(--text-primary, #eee);
995-
border: 1px solid var(--border-light, #333);
993+
background: var(--surface-inset);
994+
color: var(--text-primary);
995+
border: 1px solid var(--border-light);
996996
border-radius: 6px;
997997
padding: 6px 10px;
998998
font-size: 0.65rem;

0 commit comments

Comments
 (0)