groove-dev 0.26.22 → 0.26.23

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.
@@ -5,12 +5,12 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <link rel="icon" type="image/png" href="/favicon.png" />
7
7
  <title>Groove GUI</title>
8
- <script type="module" crossorigin src="/assets/index-DOejqkiH.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-Ebz1No43.js"></script>
9
9
  <link rel="modulepreload" crossorigin href="/assets/vendor-C0HXlhrU.js">
10
10
  <link rel="modulepreload" crossorigin href="/assets/reactflow-BQPfi37R.js">
11
11
  <link rel="modulepreload" crossorigin href="/assets/codemirror-BBL3i_JW.js">
12
12
  <link rel="modulepreload" crossorigin href="/assets/xterm--7_ns2zW.js">
13
- <link rel="stylesheet" crossorigin href="/assets/index-DomJ4Dgb.css">
13
+ <link rel="stylesheet" crossorigin href="/assets/index-D9JZfCf8.css">
14
14
  </head>
15
15
  <body>
16
16
  <div id="root"></div>
@@ -195,14 +195,14 @@ const AgentNode = memo(({ data, selected }) => {
195
195
  </div>
196
196
 
197
197
  {/* Context bar */}
198
- <div className="mt-1.5 h-[2px] rounded-sm bg-[#262a32] overflow-hidden">
198
+ <div className="mt-1.5 h-[2px] rounded-sm bg-[#3e4451] overflow-hidden">
199
199
  <div
200
200
  className="h-full rounded-sm transition-all duration-700"
201
201
  style={{
202
202
  width: `${Math.max(contextPct, 1)}%`,
203
- background: contextPct > 80 ? '#e06c75'
204
- : contextPct > 60 ? '#e5c07b'
205
- : isAlive ? '#61afef' : '#333842',
203
+ background: contextPct > 80 ? 'var(--color-danger)'
204
+ : contextPct > 60 ? 'var(--color-warning)'
205
+ : isAlive ? 'var(--color-accent)' : '#3e4451',
206
206
  }}
207
207
  />
208
208
  </div>