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
47 lines (42 loc) · 1012 Bytes
/
Copy pathglobals.css
File metadata and controls
47 lines (42 loc) · 1012 Bytes
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
@import "tailwindcss";
@import "highlight.js/styles/github.css";
:root {
/* CopilotCloud palette — exact from dojo */
--surface-main: #dedee9;
--surface-container: #ffffff;
--border-default: #ffffff;
--border-container: #dbdbe5;
--text-primary: #010507;
--text-secondary: #57575b;
--text-disabled: #838389;
--text-invert: #ffffff;
--sidebar-width: 296px;
--font-mono: "Spline Sans Mono", ui-monospace, SFMono-Regular, monospace;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: var(--surface-main);
color: var(--text-primary);
font-family:
"Plus Jakarta Sans",
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
sans-serif;
-webkit-font-smoothing: antialiased;
}
/* Scrollbar styling for sidebar */
.sidebar-scroll::-webkit-scrollbar {
width: 4px;
}
.sidebar-scroll::-webkit-scrollbar-track {
background: transparent;
}
.sidebar-scroll::-webkit-scrollbar-thumb {
background: var(--border-container);
border-radius: 4px;
}