-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconst.lua
More file actions
34 lines (25 loc) · 742 Bytes
/
const.lua
File metadata and controls
34 lines (25 loc) · 742 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
local const = {
defaultPort = 1338,
frameOverviewHeight = 40,
graphHeightFactor = 0.3,
infoLineHeight = 35,
nodeHeight = 40,
noticeDuration = 4,
noticeFadeoutAfter = 3,
-- colors
textColor = {1, 1, 1},
hoverNodeColor = {1, 0, 0},
nodeBgColor = {0.75, 0.75, 0.75},
nodeNameColor = {0, 0, 0},
nodeAnnotColor = {0.45, 0.45, 0.45},
frameCursorColor = {1, 0, 0},
frameSelectionColor = {1, 0, 0, 0.2},
graphBorderColor = {0.3, 0.3, 0.3},
timeGraphColor = {1, 0, 1},
memGraphColor = {0, 1, 0},
helpOverlayColor = {0, 0, 0, 0.8},
helpTitleColor = {1, 1, 1},
helpColor = {0.85, 0.85, 0.85},
}
const.graphYOffset = const.frameOverviewHeight + 20
return const