added cors support and started chat client

This commit is contained in:
Storme-bit
2026-04-06 03:25:25 -07:00
parent 461438e81b
commit 1e2ce7a761
16 changed files with 2610 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg-base: #0f1117;
--bg-surface: #1a1d27;
--bg-elevated: #222536;
--border: #2e3150;
--accent: #6c63ff;
--accent-hover: #574fd6;
--text-primary: #e8e8f0;
--text-secondary: #8b8fa8;
--text-muted: #555870;
--bubble-user: #6c63ff;
--bubble-ai: #222536;
--sidebar-width: 280px;
--panel-width: 260px;
--header-height: 56px;
}
html, body, #root {
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: var(--bg-base);
color: var(--text-primary);
font-size: 15px;
}