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;
|
|
}
|