agentgui 1.0.874 → 1.0.876

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.874",
3
+ "version": "1.0.876",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "electron/main.js",
@@ -85,26 +85,29 @@ textarea:focus-visible {
85
85
  outline-offset: 2px;
86
86
  }
87
87
 
88
- /* ---------- Dark mode: primary blue, not muted gray ---------- */
88
+ /* ---------- Dark mode: neutral grey palette ---------- */
89
89
  html.dark {
90
90
  --color-primary: #3b82f6;
91
91
  --color-primary-dark: #2563eb;
92
- --color-bg-primary: #0f172a;
93
- --color-bg-secondary: #111a2e;
94
- --color-bg-raised: #1a2440;
95
- --color-bg-hover: rgba(255,255,255,0.05);
96
- --color-text-primary: #e2e8f0;
97
- --color-text-secondary: #94a3b8;
98
- --color-border: #1e293b;
92
+ --color-bg-primary: #1a1a1a;
93
+ --color-bg-secondary: #212121;
94
+ --color-bg-raised: #2a2a2a;
95
+ --color-bg-hover: rgba(255,255,255,0.06);
96
+ --color-text-primary: #e5e5e5;
97
+ --color-text-secondary: #a3a3a3;
98
+ --color-border: #333333;
99
+ --color-focus-ring: rgba(163,163,163,0.35);
99
100
  }
100
101
  html.dark body { background: var(--color-bg-primary); color: var(--color-text-primary); }
101
- html.dark .sidebar { background: #0b1220; border-right: 1px solid var(--color-border); }
102
+ html.dark .sidebar { background: #161616; border-right: 1px solid var(--color-border); }
102
103
  html.dark .main-header,
103
104
  html.dark .view-toggle-bar,
104
105
  html.dark .input-section { background: var(--color-bg-primary); }
105
- html.dark .input-card { background: #0b1220; }
106
- html.dark .input-chip-select { background: #0b1220; }
107
- html.dark .status-badge { background: #0b1220; }
106
+ html.dark .input-card { background: #161616; border-color: var(--color-border); }
107
+ html.dark .input-chip-select { background: #161616; }
108
+ html.dark .status-badge { background: #161616; }
109
+ html.dark .sidebar-search-input { background: #161616; }
110
+ html.dark .conversation-item.active { background: #2f2f2f; color: var(--color-text-primary); }
108
111
  html.dark .tools-popup,
109
112
  html.dark .folder-modal-overlay { background: rgba(0,0,0,0.65); }
110
113
 
@@ -142,7 +142,7 @@
142
142
  applyDiff(scroll, vnodes);
143
143
  }
144
144
 
145
- function togglePopup(e) { e.stopPropagation(); if (!popup.classList.contains('open')) { isRefreshing = false; refresh(); } popup.classList.toggle('open'); }
145
+ function togglePopup(e) { if (e) e.stopPropagation(); if (!popup.classList.contains('open')) { isRefreshing = false; refresh(); } popup.classList.toggle('open'); }
146
146
  function closePopup() { popup.classList.remove('open'); }
147
147
  function refresh() { fetchTools(); }
148
148