collet 0.1.0

Relentless agentic coding orchestrator with zero-drop agent loops
Documentation
/* WebTUI — terminal aesthetics for browser */

/* ── Dark theme (default) ─────────────────────────────── */
:root {
	--bg: #1a1b26;
	--bg-surface: #1e1f2e;
	--bg-elevated: #24253a;
	--fg: #c0caf5;
	--fg-dim: #565f89;
	--fg-bright: #e0e4ff;
	--accent: #7aa2f7;
	--accent-dim: #3d59a1;
	--green: #9ece6a;
	--red: #f7768e;
	--yellow: #e0af68;
	--cyan: #7dcfff;
	--magenta: #bb9af7;
	--border: #292e42;
	--font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'SF Mono', monospace;
	--radius: 6px;
	--left-w: 280px;
	--right-w: 280px;
}

/* ── Light theme ──────────────────────────────────────── */
[data-theme='light'] {
	--bg: #fafafa;
	--bg-surface: #f0f0f2;
	--bg-elevated: #e4e4ea;
	--fg: #383a42;
	--fg-dim: #9899a6;
	--fg-bright: #1a1a24;
	--accent: #4078f2;
	--accent-dim: #c5d1ff;
	--green: #50a14f;
	--red: #e45649;
	--yellow: #c18401;
	--cyan: #0184bc;
	--magenta: #a626a4;
	--border: #d4d5de;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
	height: 100%;
	background: var(--bg);
	color: var(--fg);
	font-family: var(--font-mono);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* Scrollbars */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--fg-dim); }
::selection { background: var(--accent-dim); color: var(--fg-bright); }

/* Responsive sidebar widths */
@media (max-width: 1200px) {
	:root { --right-w: 240px; }
}
@media (max-width: 1024px) {
	:root { --right-w: 0px; }
}
@media (max-width: 768px) {
	:root { --left-w: 0px; --right-w: 0px; }
}