Skip to main content

max / makenotwork

tauri-updater-ui: intent tokens in the shared updater UI The updater overlay (symlinked by GoingsOn + Balanced Breakfast) referenced brand tokens; switch to intent tokens with fallbacks so it themes consistently under the shared vocabulary. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-06-13 01:52 UTC
Commit: 4473c1f29603e6d0aa7f63a351140f7a64a40e79
Parent: 55e3c2f
1 file changed, +4 insertions, -4 deletions
@@ -25,10 +25,10 @@ function initUpdater(opts) {
25 25 const ui = opts.ui;
26 26 const esc = opts.escapeHtml || ((s) => s);
27 27 const vars = Object.assign({
28 - accent: 'var(--accent-color, #6c5ce7)',
29 - border: 'var(--border-color, #444)',
30 - textSecondary: 'var(--text-secondary, #aaa)',
31 - bgSecondary: 'var(--bg-secondary, #2d2d2d)',
28 + accent: 'var(--action, #6c5ce7)',
29 + border: 'var(--border, #444)',
30 + textSecondary: 'var(--content-secondary, #aaa)',
31 + bgSecondary: 'var(--surface-overlay, #2d2d2d)',
32 32 fontBody: 'var(--font-body, sans-serif)',
33 33 }, opts.cssVars || {});
34 34