🎉 initial commit

This commit is contained in:
2026-02-20 14:17:34 +10:00
commit e21d1c7b58
33 changed files with 8207 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
.app-layout {
display: grid;
grid-template-columns: 220px 1fr 340px;
grid-template-rows: 100vh;
height: 100vh;
overflow: hidden;
}
/* ─── Sidebar ──────────────────────────────────────────────────── */
.sidebar {
background: var(--sidebar-bg);
border-right: 1px solid var(--border);
overflow: hidden;
display: flex;
flex-direction: column;
}
/* ─── Editor area ──────────────────────────────────────────────── */
.editor-area {
display: flex;
flex-direction: column;
overflow: hidden;
background: var(--editor-bg);
}
/* ─── Chat area ────────────────────────────────────────────────── */
.chat-area {
overflow: hidden;
display: flex;
flex-direction: column;
}

View File

@@ -0,0 +1,68 @@
/* ─── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* ─── Design tokens ────────────────────────────────────────────── */
:root {
/* Background layers */
--bg-base: #131110;
--sidebar-bg: #0f0e0c;
--toolbar-bg: #161412;
--editor-bg: #131110;
--message-bg: #1c1a17;
--user-message-bg:#1e1c17;
--input-bg: #1c1a17;
/* Borders */
--border: #2a2620;
--hover-bg: rgba(167,139,95,0.08);
--active-bg: rgba(167,139,95,0.12);
/* Text */
--text-primary: #e8e0d0;
--text-secondary: #b5a990;
--text-muted: #7a6f5e;
/* Heading color in editor */
--heading-color: #d4b896;
/* Accent (aged gold) */
--accent: #a78b5f;
--accent-hover: #c4a870;
/* Typography */
--font-serif: 'Georgia', 'Times New Roman', serif;
--font-sans: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}
/* ─── Base ─────────────────────────────────────────────────────── */
html, body, #root {
height: 100%;
overflow: hidden;
}
body {
background: var(--bg-base);
color: var(--text-primary);
font-family: var(--font-sans);
-webkit-font-smoothing: antialiased;
}
/* ─── Scrollbars ───────────────────────────────────────────────── */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--border);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--text-muted);
}