Files
copilotkit__copilotkit/showcase/shared/starter-template/app/globals.css
Jordan Ritter fa98b9c803 feat(showcase): replace starters/ with on-demand extract-starter
Delete the pre-generated starters/ directory tree (previously
synced from packages/ by generate-starters.ts). Add
extract-starter.ts which produces a starter tarball on demand
from any integration. Move shared starter template files to
showcase/shared/starter-template/.
2026-04-28 07:50:39 -07:00

24 lines
449 B
CSS

@import "tailwindcss";
:root {
--copilot-kit-background-color: #fafaf9;
--copilot-kit-primary-color: #0d6e3f;
--copilot-kit-response-button-background-color: #f5f5f3;
--copilot-kit-response-button-color: #1a1a18;
}
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
width: 100%;
overflow: auto;
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #fafaf9;
color: #1a1a18;
}