forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
61 lines (55 loc) · 1.32 KB
/
Copy pathglobals.css
File metadata and controls
61 lines (55 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@import "tailwindcss";
@import "@copilotkit/react-core/v2/styles.css";
@custom-variant dark (&:where(.dark, .dark *));
:root {
--copilot-kit-background-color: #f8f9fa;
--copilot-kit-primary-color: #0066ff;
--background: #f8f9fa;
--foreground: #1a1a18;
--card: #ffffff;
--card-foreground: #1a1a18;
--primary: #1a1a18;
--primary-foreground: #ffffff;
--secondary: #ededf5;
--secondary-foreground: #1a1a18;
--muted: #ededf5;
--muted-foreground: #57575b;
--accent: #eee6fe;
--accent-foreground: #1a1a18;
--destructive: #fa5f67;
--destructive-foreground: #ffffff;
--border: #dbdbe5;
--input: #dbdbe5;
--ring: #bec2ff;
--radius: 0.75rem;
}
:root.dark,
.dark {
--background: #0a0a0a;
--foreground: #fafafa;
--card: #191a1e;
--card-foreground: #fafafa;
--primary: #fafafa;
--primary-foreground: #1a1a18;
--secondary: #242529;
--secondary-foreground: #fafafa;
--muted: #242529;
--muted-foreground: #adadb2;
--accent: #303136;
--accent-foreground: #fafafa;
--destructive: #fa5f67;
--destructive-foreground: #ffffff;
--border: #303136;
--input: #303136;
--ring: #bec2ff;
}
* {
box-sizing: border-box;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
min-height: 100vh;
background: var(--background);
color: var(--foreground);
}