Skip to content

Commit 54bc401

Browse files
eddietejedaclaude
andcommitted
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 <noreply@anthropic.com>
1 parent f320b6c commit 54bc401

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/auth.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,16 +207,16 @@ fn receive_callback(
207207
*, *::before, *::after {{ box-sizing: border-box; margin: 0; padding: 0; }}
208208
body {{
209209
font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
210-
background: #111827;
210+
background: #121212;
211211
color: #e5e7eb;
212212
display: flex;
213213
align-items: center;
214214
justify-content: center;
215215
min-height: 100vh;
216216
}}
217217
.card {{
218-
background: #1f2937;
219-
border: 1px solid #374151;
218+
background: #1a1a1a;
219+
border: 1px solid #333333;
220220
border-radius: 0.5rem;
221221
padding: 2.5rem;
222222
max-width: 420px;

0 commit comments

Comments
 (0)