- Fix paths: relative to agent home dir, not hardcoded /home/agent - Add worker/dream coordination: dream pauses worker to prevent file races - Watch registration via .colony.toml (server reads agent config) - Remove remaining old mentions API reference (use inbox instead) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
92 lines
2.5 KiB
CSS
92 lines
2.5 KiB
CSS
@import "tailwindcss";
|
|
@import "@fontsource/inconsolata/400.css";
|
|
@import "@fontsource/inconsolata/700.css";
|
|
@import "@fontsource-variable/instrument-sans";
|
|
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
@theme inline {
|
|
--font-mono: 'Inconsolata', ui-monospace, monospace;
|
|
--font-sans: 'Instrument Sans Variable', system-ui, sans-serif;
|
|
|
|
--color-ring: var(--ring);
|
|
--color-input: var(--input);
|
|
--color-border: var(--border);
|
|
--color-destructive: var(--destructive);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-card: var(--card);
|
|
--color-foreground: var(--foreground);
|
|
--color-background: var(--background);
|
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
--color-sidebar: var(--sidebar);
|
|
--color-sidebar-accent: var(--sidebar-accent);
|
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
--color-sidebar-border: var(--sidebar-border);
|
|
|
|
/* Zero radii — brutalist, no rounded corners */
|
|
--radius-sm: 0;
|
|
--radius-md: 0;
|
|
--radius-lg: 0;
|
|
--radius-xl: 0;
|
|
|
|
/* Message type accents */
|
|
--color-hot: #F26522;
|
|
--color-msg-result: #22C55E;
|
|
--color-msg-error: #EF4444;
|
|
--color-msg-plan: #3B82F6;
|
|
--color-msg-code: #EAB308;
|
|
}
|
|
|
|
:root {
|
|
/* Warm concrete palette */
|
|
--background: #1a1917;
|
|
--foreground: #d4d0c8;
|
|
--card: #1f1e1b;
|
|
--card-foreground: #d4d0c8;
|
|
--popover: #1f1e1b;
|
|
--popover-foreground: #d4d0c8;
|
|
--primary: #F26522;
|
|
--primary-foreground: #1a1917;
|
|
--secondary: #2a2825;
|
|
--secondary-foreground: #a8a49c;
|
|
--muted: #252320;
|
|
--muted-foreground: #7a756c;
|
|
--accent: #2a2825;
|
|
--accent-foreground: #d4d0c8;
|
|
--destructive: #EF4444;
|
|
--border: #3a3632;
|
|
--input: #252320;
|
|
--ring: #F26522;
|
|
--sidebar: #151413;
|
|
--sidebar-foreground: #8a857c;
|
|
--sidebar-accent: #252320;
|
|
--sidebar-accent-foreground: #d4d0c8;
|
|
--sidebar-border: #2a2825;
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground font-mono antialiased;
|
|
font-size: 13px;
|
|
line-height: 1.6;
|
|
}
|
|
html, body, #root {
|
|
height: 100%;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
}
|