Files
copilotkit__copilotkit/examples/integrations/mcp-apps/apps/web/app/globals.css
2026-03-12 13:06:02 -07:00

25 lines
341 B
CSS

@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
body,
html {
height: 100%;
}