Files
copilotkit__copilotkit/examples/integrations/a2a-a2ui/app/globals.css
2026-03-12 13:06:02 -07:00

28 lines
512 B
CSS

@import "tailwindcss";
@config "../tailwind.config.ts";
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
@layer base {
body {
@apply min-h-screen bg-background text-foreground font-sans antialiased;
}
}