mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
7762c43863
Restores #5151 (north-star + batch 1 + crewai-flows + llamaindex), #5196 (pydantic-ai), #5205 (a2a-middleware), #5211 (mcp-apps), reconciled onto the current main baseline rather than the pre-revert tree: - keep main's 1.59.3 pins, AGENT_URL normalization, default agent keys, useConfigureSuggestions, available:false, useRenderTool status/parameters API, call-time agent.state reads, and crewai-crews' rebuilt page (not yet threads-migrated) - graft the threads layer (drawer/gate/provider, env-gated route intelligence block, next.config gate, env docs, drawer deps) on top - drop threads-era sidebar suggestions props where main now registers suggestions via useConfigureSuggestions (or omits them) - fix the stale pydantic-ai doc link main reintroduced in ms-af-dotnet Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
56 lines
1.2 KiB
CSS
56 lines
1.2 KiB
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #171717;
|
|
|
|
--card: oklch(1 0 0);
|
|
--card-foreground: oklch(0.145 0 0);
|
|
--primary: oklch(0.205 0 0);
|
|
--primary-foreground: oklch(0.985 0 0);
|
|
--secondary: oklch(0.97 0 0);
|
|
--secondary-foreground: oklch(0.205 0 0);
|
|
--muted: oklch(0.97 0 0);
|
|
--muted-foreground: oklch(0.556 0 0);
|
|
--accent: oklch(0.97 0 0);
|
|
--accent-foreground: oklch(0.205 0 0);
|
|
--destructive: oklch(0.577 0.245 27.325);
|
|
--destructive-foreground: oklch(0.985 0 0);
|
|
--border: oklch(0.922 0 0);
|
|
--input: oklch(0.922 0 0);
|
|
--ring: oklch(0.708 0 0);
|
|
|
|
--radius: 0.625rem;
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) + 4px);
|
|
|
|
--font-body: Arial, Helvetica, sans-serif;
|
|
--font-code: "SFMono-Regular", Menlo, monospace;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: #0a0a0a;
|
|
--foreground: #ededed;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.threadsLayout,
|
|
body > [role="presentation"] {
|
|
--foreground: oklch(0.145 0 0);
|
|
--background: oklch(1 0 0);
|
|
}
|
|
|
|
body,
|
|
html {
|
|
height: 100%;
|
|
}
|