-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
26 lines (23 loc) · 763 Bytes
/
index.css
File metadata and controls
26 lines (23 loc) · 763 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
@import "tailwindcss";
@theme {
--color-ide-bg: #1e1e1e;
--color-ide-panel: #252526;
--color-ide-border: #3e3e42;
--color-ide-accent: #007fd4;
--color-ide-hover: #2a2d2e;
--color-ide-text: #cccccc;
}
body, html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
background-color: var(--color-ide-bg);
color: var(--color-ide-text);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Custom scrollbar for IDE feel */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-ide-bg); }
::-webkit-scrollbar-thumb { background: #424242; }
::-webkit-scrollbar-thumb:hover { background: #4f4f4f; }