From 677936384926889f9996c1c593510a996492bffc Mon Sep 17 00:00:00 2001 From: James Date: Fri, 20 Feb 2026 18:01:18 -0500 Subject: [PATCH] chore: auto-commit uncommitted changes --- index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index de945b6..87f2f26 100644 --- a/index.html +++ b/index.html @@ -25,11 +25,11 @@ canvas#clock { width: 180px; height: 180px; } #weather-line { text-align: center; font-size: 14px; font-weight: 300; color: #bbb; margin-top: 4px; letter-spacing: 1px; } #current-temp { font-size: 16px; font-weight: 600; color: #e0ddd5; } #weather-line .wx-alert { color: #ff2222; font-weight: 600; } -#claude-usage { text-align: center; font-size: 14px; font-weight: 900; margin-top: 6px; letter-spacing: 1px; font-variant-numeric: tabular-nums; padding: 2px 8px; border-radius: 4px; } -#claude-usage.good { color: #000; background: #00ffff; } -#claude-usage.ok { color: #000; background: #ffff00; } -#claude-usage.warn { color: #000; background: #ff00ff; } -#claude-usage.crit { color: #fff; background: #ff0000; } +#claude-usage { text-align: center; font-size: 14px; font-weight: 900; margin-top: 6px; letter-spacing: 1px; font-variant-numeric: tabular-nums; padding: 2px 8px; } +#claude-usage.good { color: #00ffff; } +#claude-usage.ok { color: #ffff00; } +#claude-usage.warn { color: #ff00ff; } +#claude-usage.crit { color: #ff4444; } #meeting-line { text-align: center; font-size: 13px; font-weight: 300; color: #bbb; margin-top: 8px; letter-spacing: 1px; } #meeting-line.warning { color: #d4a050; } #meeting-line.critical { color: #ff2222; animation: pulse 2s ease-in-out infinite; } @@ -449,7 +449,7 @@ async function updateClaudeUsage() { const r = await fetch('/api/claude-usage'); const d = await r.json(); if (d.pace != null) { - el.textContent = `⚡ ${d.pace}%`; + el.textContent = `pace ${d.pace}%`; el.title = `Budget pace: ${d.timePct}% of week elapsed, ${d.usage}% used`; // Color: <90 green, 90-100 white, >100 red el.className = d.pace < 90 ? 'good' : d.pace <= 100 ? 'ok' : 'crit';