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:
SocioWire 2026-01-10 23:39:24 +00:00
parent 75c7b6e483
commit 025a05063f
2 changed files with 5 additions and 5 deletions

View File

@ -59,12 +59,12 @@ export default function App() {
setTheme(saved); setTheme(saved);
document.body.setAttribute("data-theme", saved); document.body.setAttribute("data-theme", saved);
} else { } else {
setTheme("blue"); setTheme("light");
document.body.setAttribute("data-theme", "blue"); document.body.setAttribute("data-theme", "light");
} }
} catch (e) { } catch (e) {
setTheme("blue"); setTheme("light");
document.body.setAttribute("data-theme", "blue"); document.body.setAttribute("data-theme", "light");
} }
}, []); }, []);

View File

@ -9,7 +9,7 @@ body[data-theme="blue"] .post-pin--compact .post-pin-bubble {
border-color: rgba(96, 165, 250, 0.95); 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"] .sociowall-panel,
body[data-theme="light"] .chat-panel, body[data-theme="light"] .chat-panel,