mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
fa98b9c803
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/.
24 lines
449 B
CSS
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;
|
|
}
|