From 54bc40184340dbf2d03c5b273108ac864016e0ab Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com> Date: Tue, 19 May 2026 14:12:38 -0700 Subject: [PATCH] fix(auth): align CLI callback page colors with web app theme Update the local OAuth callback HTML to use the hotdata app custom gray palette (#121212 bg, #1a1a1a card, #333333 border) instead of default Tailwind grays, so the post-login page matches the web UI. Co-Authored-By: Claude Sonnet 4.6 --- src/auth.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/auth.rs b/src/auth.rs index d9d4e10..caefb8d 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -207,7 +207,7 @@ fn receive_callback( *, *::before, *::after {{ box-sizing: border-box; margin: 0; padding: 0; }} body {{ font-family: ui-sans-serif, system-ui, -apple-system, sans-serif; - background: #111827; + background: #121212; color: #e5e7eb; display: flex; align-items: center; @@ -215,8 +215,8 @@ fn receive_callback( min-height: 100vh; }} .card {{ - background: #1f2937; - border: 1px solid #374151; + background: #1a1a1a; + border: 1px solid #333333; border-radius: 0.5rem; padding: 2.5rem; max-width: 420px;