@import "tailwindcss"; @import "tw-animate-css"; @import "shadcn/tailwind.css"; @plugin "@tailwindcss/typography"; @custom-variant dark (&:is(.dark *)); @theme inline { --color-background: var(--background); --color-foreground: var(--foreground); --font-sans: var(--font-sans); --font-mono: var(--font-mono); --font-heading: var(--font-display); --color-status-queued: var(--status-queued); --color-status-running: var(--status-running); --color-status-succeeded: var(--status-succeeded); --color-status-failed: var(--status-failed); --color-status-cancelled: var(--status-cancelled); --color-status-warn: var(--status-warn); --color-sidebar-ring: var(--sidebar-ring); --color-sidebar-border: var(--sidebar-border); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); --color-sidebar-accent: var(--sidebar-accent); --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); --color-sidebar-primary: var(--sidebar-primary); --color-sidebar-foreground: var(--sidebar-foreground); --color-sidebar: var(--sidebar); --color-chart-5: var(--chart-5); --color-chart-4: var(--chart-4); --color-chart-3: var(--chart-3); --color-chart-2: var(--chart-2); --color-chart-1: var(--chart-1); --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); --radius-sm: calc(var(--radius) * 0.6); --radius-md: calc(var(--radius) * 0.8); --radius-lg: var(--radius); --radius-xl: calc(var(--radius) * 1.4); --radius-2xl: calc(var(--radius) * 1.8); --radius-3xl: calc(var(--radius) * 2.2); --radius-4xl: calc(var(--radius) * 2.6); } /* * Palette - "instrument panel": cool graphite ink/paper with a warm brass signal accent. * The brass tone doubles as the "running" status color, so a live run literally lights the UI * up with the brand color - see run-status-badge.tsx and run-terminal.tsx. */ :root { --background: #f5f6f7; --foreground: #15171a; --card: #ffffff; --card-foreground: #15171a; --popover: #ffffff; --popover-foreground: #15171a; --primary: #c8842e; --primary-foreground: #17130a; --secondary: #ececee; --secondary-foreground: #15171a; --muted: #ececee; --muted-foreground: #6b7280; --accent: #ececee; --accent-foreground: #15171a; --destructive: #b3402e; --border: #dfe1e3; --input: #dfe1e3; --ring: #c8842e; --status-queued: #6b7280; --status-running: #c8842e; --status-succeeded: #3f8f5f; --status-failed: #b3402e; --status-cancelled: #6b7280; --status-warn: #8a7530; --chart-1: #c8842e; --chart-2: #3f8f5f; --chart-3: #6b7280; --chart-4: #8a7530; --chart-5: #b3402e; --radius: 0.5rem; --sidebar: #f5f6f7; --sidebar-foreground: #15171a; --sidebar-primary: #c8842e; --sidebar-primary-foreground: #17130a; --sidebar-accent: #ececee; --sidebar-accent-foreground: #15171a; --sidebar-border: #dfe1e3; --sidebar-ring: #c8842e; } .dark { --background: #14161a; --foreground: #edeef0; --card: #1b1e23; --card-foreground: #edeef0; --popover: #1b1e23; --popover-foreground: #edeef0; --primary: #e9a857; --primary-foreground: #1a1305; --secondary: #23262c; --secondary-foreground: #edeef0; --muted: #23262c; --muted-foreground: #9aa0a8; --accent: #23262c; --accent-foreground: #edeef0; --destructive: #e2685a; --border: oklch(1 0 0 / 10%); --input: oklch(1 0 0 / 14%); --ring: #e9a857; --status-queued: #9aa0a8; --status-running: #e9a857; --status-succeeded: #5fb983; --status-failed: #e2685a; --status-cancelled: #9aa0a8; --status-warn: #c9a344; --chart-1: #e9a857; --chart-2: #5fb983; --chart-3: #9aa0a8; --chart-4: #c9a344; --chart-5: #e2685a; --sidebar: #1b1e23; --sidebar-foreground: #edeef0; --sidebar-primary: #e9a857; --sidebar-primary-foreground: #1a1305; --sidebar-accent: #23262c; --sidebar-accent-foreground: #edeef0; --sidebar-border: oklch(1 0 0 / 10%); --sidebar-ring: #e9a857; } @layer base { * { @apply border-border outline-ring/50; } body { @apply bg-background text-foreground; } html { @apply font-sans; } }