@import "tailwindcss"; @import "tw-animate-css"; @custom-variant dark (&:is(.dark *)); @theme inline { --radius-sm: calc(var(--radius) - 4px); --radius-md: calc(var(--radius) - 2px); --radius-lg: var(--radius); --radius-xl: calc(var(--radius) + 4px); --color-background: var(--background); --color-foreground: var(--foreground); --color-card: var(--card); --color-card-foreground: var(--card-foreground); --color-popover: var(--popover); --color-popover-foreground: var(--popover-foreground); --color-primary: var(--primary); --color-primary-foreground: var(--primary-foreground); --color-secondary: var(--secondary); --color-secondary-foreground: var(--secondary-foreground); --color-muted: var(--muted); --color-muted-foreground: var(--muted-foreground); --color-accent: var(--accent); --color-accent-foreground: var(--accent-foreground); --color-destructive: var(--destructive); --color-destructive-foreground: var(--destructive-foreground); --color-border: var(--border); --color-input: var(--input); --color-ring: var(--ring); --color-chart-1: var(--chart-1); --color-chart-2: var(--chart-2); --color-chart-3: var(--chart-3); --color-chart-4: var(--chart-4); --color-chart-5: var(--chart-5); --color-sidebar: var(--sidebar); --color-sidebar-foreground: var(--sidebar-foreground); --color-sidebar-primary: var(--sidebar-primary); --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); --color-sidebar-accent: var(--sidebar-accent); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); --color-sidebar-border: var(--sidebar-border); --color-sidebar-ring: var(--sidebar-ring); --font-mono: "JetBrains Mono", "Fira Code", "Cascadia Code", ui-monospace, monospace; } :root { --radius: 0.5rem; --background: oklch(0.98 0.002 260); --foreground: oklch(0.15 0.01 260); --card: oklch(0.99 0.001 260); --card-foreground: oklch(0.15 0.01 260); --popover: oklch(0.99 0.001 260); --popover-foreground: oklch(0.15 0.01 260); --primary: oklch(0.55 0.22 250); --primary-foreground: oklch(0.98 0 0); --secondary: oklch(0.94 0.005 260); --secondary-foreground: oklch(0.3 0.01 260); --muted: oklch(0.95 0.003 260); --muted-foreground: oklch(0.5 0.02 260); --accent: oklch(0.93 0.005 260); --accent-foreground: oklch(0.2 0.01 260); --destructive: oklch(0.55 0.22 25); --destructive-foreground: oklch(0.98 0 0); --border: oklch(0.88 0.01 260); --input: oklch(0.95 0.005 260); --ring: oklch(0.55 0.22 250); --chart-1: oklch(0.55 0.22 250); --chart-2: oklch(0.55 0.18 160); --chart-3: oklch(0.6 0.18 80); --chart-4: oklch(0.55 0.22 25); --chart-5: oklch(0.55 0.2 310); --sidebar: oklch(0.96 0.003 260); --sidebar-foreground: oklch(0.2 0.01 260); --sidebar-primary: oklch(0.55 0.22 250); --sidebar-primary-foreground: oklch(0.98 0 0); --sidebar-accent: oklch(0.92 0.005 260); --sidebar-accent-foreground: oklch(0.2 0.01 260); --sidebar-border: oklch(0.88 0.008 260); --sidebar-ring: oklch(0.55 0.22 250); } .dark { --background: oklch(0.12 0.005 260); --foreground: oklch(0.9 0.01 250); --card: oklch(0.15 0.006 260); --card-foreground: oklch(0.9 0.01 250); --popover: oklch(0.17 0.008 260); --popover-foreground: oklch(0.9 0.01 250); --primary: oklch(0.72 0.18 250); --primary-foreground: oklch(0.98 0 0); --secondary: oklch(0.2 0.008 260); --secondary-foreground: oklch(0.8 0.01 250); --muted: oklch(0.18 0.006 260); --muted-foreground: oklch(0.6 0.02 250); --accent: oklch(0.22 0.01 260); --accent-foreground: oklch(0.9 0.01 250); --destructive: oklch(0.65 0.2 25); --destructive-foreground: oklch(0.98 0 0); --border: oklch(0.25 0.01 260); --input: oklch(0.2 0.008 260); --ring: oklch(0.72 0.18 250); --chart-1: oklch(0.72 0.18 250); --chart-2: oklch(0.7 0.15 160); --chart-3: oklch(0.75 0.15 80); --chart-4: oklch(0.65 0.2 25); --chart-5: oklch(0.7 0.18 310); --sidebar: oklch(0.1 0.004 260); --sidebar-foreground: oklch(0.85 0.01 250); --sidebar-primary: oklch(0.72 0.18 250); --sidebar-primary-foreground: oklch(0.98 0 0); --sidebar-accent: oklch(0.18 0.008 260); --sidebar-accent-foreground: oklch(0.9 0.01 250); --sidebar-border: oklch(0.22 0.008 260); --sidebar-ring: oklch(0.72 0.18 250); } @layer base { * { @apply border-border outline-ring/50; } body { @apply bg-background text-foreground; font-family: "Inter", system-ui, -apple-system, sans-serif; } button:not(:disabled), [role="button"]:not([aria-disabled="true"]), [type="button"]:not(:disabled), [type="submit"]:not(:disabled), [type="reset"]:not(:disabled), a[href], select:not(:disabled), input[type="checkbox"]:not(:disabled), input[type="radio"]:not(:disabled) { @apply cursor-pointer; } } @layer components { /** * Custom container utility that centers content and adds responsive padding. * * This overrides Tailwind's default container behavior to: * - Auto-center content (mx-auto) * - Add responsive horizontal padding * - Set max-width for large screens * * Usage:
...
* * For custom widths, use max-w-* utilities directly: *
...
*/ .container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; /* 16px - mobile padding */ padding-right: 1rem; } .flex { min-height: 0; min-width: 0; } @media (min-width: 640px) { .container { padding-left: 1.5rem; /* 24px - tablet padding */ padding-right: 1.5rem; } } @media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; } } pre code { font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.6; } ::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: oklch(0.3 0.01 260); border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: oklch(0.4 0.01 260); } .tool-card { transition: all 0.2s ease; } .tool-card:hover { background: oklch(0.2 0.01 260); } .streaming-cursor::after { content: "\25CA"; animation: blink 1s step-end infinite; color: oklch(0.72 0.18 250); } @keyframes blink { 50% { opacity: 0; } } .prose pre { background: oklch(0.1 0.004 260) !important; border: 1px solid oklch(0.25 0.01 260); border-radius: 0.5rem; padding: 1rem; } .prose code { color: oklch(0.8 0.12 160); background: oklch(0.15 0.006 260); padding: 0.15rem 0.4rem; border-radius: 0.25rem; font-size: 0.85em; } .prose pre code { background: transparent; padding: 0; } }