-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
50 lines (38 loc) · 761 Bytes
/
index.css
File metadata and controls
50 lines (38 loc) · 761 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
48
49
50
:root {
--node-text-color: #ffffff;
--text-color: #ffffff;
--node-color: #800080;
--hl-node-color: #ee00ee;
--node-line-color: #ffffff;
--hl-node-line-color: #ee00ee;
--node-bg-color: #1e1e1e;
}
body {
margin: 0;
overflow: hidden;
background-color: var(--node-bg-color);
color: var(--text-color);
font-family: Arial, sans-serif;
}
#3d-graph {
width: 100vw;
height: 100vh;
}
canvas {
display: block;
}
.node-text-color {
color: var(--node-text-color);
}
.node-color {
color: var(--node-color);
}
.hl-node-color {
color: var(--hl-node-color);
}
.node-line-color {
color: var(--node-line-color);
}
.hl-node-line-color {
color: var(--hl-node-line-color);
}