Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
541 changes: 304 additions & 237 deletions apps/desktop/src/App.tsx

Large diffs are not rendered by default.

363 changes: 264 additions & 99 deletions apps/desktop/src/components/ModelPicker.tsx

Large diffs are not rendered by default.

746 changes: 302 additions & 444 deletions apps/desktop/src/components/TaskThreadView.tsx

Large diffs are not rendered by default.

488 changes: 231 additions & 257 deletions apps/desktop/src/components/ThreadSidebar.tsx

Large diffs are not rendered by default.

56 changes: 49 additions & 7 deletions apps/desktop/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,48 @@
@layer base {
:root {
color-scheme: dark;
--app-bg: #070b14;
--panel-base: rgba(6, 10, 18, 0.92);
--panel-muted: rgba(13, 18, 30, 0.9);
--panel-card: rgba(11, 16, 28, 0.94);
--panel-overlay: rgba(9, 14, 24, 0.88);
--panel-elevated: rgba(18, 25, 40, 0.96);
--border: rgba(148, 163, 184, 0.18);
--border-strong: rgba(148, 163, 184, 0.34);
--text-primary: #f5f7fb;
--text-muted: #97a3b6;
--accent: #4f8cff;
--accent-soft: rgba(79, 140, 255, 0.14);
--warning-soft: rgba(245, 158, 11, 0.12);
--warning-border: rgba(245, 158, 11, 0.24);
--warning-text: #f4c16d;
--danger-soft: rgba(244, 63, 94, 0.12);
--danger-card: rgba(45, 12, 22, 0.28);
--danger-border: rgba(244, 63, 94, 0.26);
--danger-text: #f3a7b4;
}

html[data-theme="light"] {
color-scheme: light;
--app-bg: #eef3fb;
--panel-base: rgba(255, 255, 255, 0.98);
--panel-muted: rgba(247, 250, 255, 0.98);
--panel-card: rgba(255, 255, 255, 0.98);
--panel-overlay: rgba(255, 255, 255, 0.86);
--panel-elevated: rgba(241, 246, 255, 1);
--border: rgba(100, 116, 139, 0.16);
--border-strong: rgba(71, 85, 105, 0.32);
--text-primary: #0f172a;
--text-muted: #5f6c80;
--accent: #2563eb;
--accent-soft: rgba(37, 99, 235, 0.12);
--warning-soft: rgba(245, 158, 11, 0.12);
--warning-border: rgba(245, 158, 11, 0.24);
--warning-text: #9a6700;
--danger-soft: rgba(244, 63, 94, 0.1);
--danger-card: rgba(255, 241, 244, 0.92);
--danger-border: rgba(225, 29, 72, 0.2);
--danger-text: #b4233e;
}

html,
Expand All @@ -16,9 +58,9 @@
body {
margin: 0;
overflow: hidden;
color: #f4f7fb;
background: #04060a;
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
color: var(--text-primary);
background: var(--app-bg);
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
text-rendering: geometricPrecision;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Expand All @@ -34,8 +76,8 @@
}

::selection {
background: rgba(255, 255, 255, 0.15);
color: #ffffff;
background: var(--accent-soft);
color: var(--text-primary);
}

::-webkit-scrollbar {
Expand All @@ -48,12 +90,12 @@
}

::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.18);
background: rgba(148, 163, 184, 0.4);
border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.28);
background: rgba(100, 116, 139, 0.6);
}

.scrollbar-hide {
Expand Down
Loading
Loading