style: Light theme as default, brighter background
- Set light theme as default for new users - Change light theme background from #e5e7eb to #f8fafc (brighter) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
75c7b6e483
commit
025a05063f
|
|
@ -59,12 +59,12 @@ export default function App() {
|
|||
setTheme(saved);
|
||||
document.body.setAttribute("data-theme", saved);
|
||||
} else {
|
||||
setTheme("blue");
|
||||
document.body.setAttribute("data-theme", "blue");
|
||||
setTheme("light");
|
||||
document.body.setAttribute("data-theme", "light");
|
||||
}
|
||||
} catch (e) {
|
||||
setTheme("blue");
|
||||
document.body.setAttribute("data-theme", "blue");
|
||||
setTheme("light");
|
||||
document.body.setAttribute("data-theme", "light");
|
||||
}
|
||||
}, []);
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ body[data-theme="blue"] .post-pin--compact .post-pin-bubble {
|
|||
border-color: rgba(96, 165, 250, 0.95);
|
||||
}
|
||||
|
||||
body[data-theme="light"] { background:#e5e7eb; color:#111827; }
|
||||
body[data-theme="light"] { background:#f8fafc; color:#111827; }
|
||||
|
||||
body[data-theme="light"] .sociowall-panel,
|
||||
body[data-theme="light"] .chat-panel,
|
||||
|
|
|
|||
Loading…
Reference in New Issue