-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpallete.lua
55 lines (35 loc) · 1.42 KB
/
pallete.lua
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
local pallete = {
active = { 1, 1, 1, 1 },
inactive = { 0.2, 0.75, 0.5, 1 },
highLightedTextColor = { 0.78, 0.78, 0.78, 1 },
background = { 0.3, 0.3, 0.2, 0.5 },
chart = { 200 / 255, 80 / 255, 80 / 255, 1 },
field = { 0.3, 0.8, 0.8, 1 },
font = { 255 / 255, 255 / 255, 255 / 255, 1 },
header = { 1, 1, 0 },
scroll_tip_text = { 0 / 255, 240 / 255, 0 / 255, 1 },
signal = { 200 / 255, 80 / 255, 80 / 255, 1 },
sound_text_disabled = { 255 / 255, 255 / 255, 0 / 255, 1 },
sound_text_enabled = { 0 / 255, 240 / 255, 0 / 255, 1 },
statistic = { 0 / 255, 240 / 255, 0 / 255, 1 },
percentFont = { 200 / 255, 0, 200 / 255 },
tip_text_alt = { 255 / 255, 255 / 255, 0 / 255, 1 },
tip_text = { 0 / 255, 240 / 255, 0 / 255, 1 },
debug_line = { 100 / 255, 200 / 255, 50 / 255, 1 },
debug_font = { 140 / 255, 140 / 255, 140 / 255, 1 },
hit_color = { 200 / 255, 10 / 255, 10 / 255 },
buttonColor = { 1, 0.42, 0.5, 0.67 },
statisticSignalType = { 0, 0.941, 0, 1 },
levelColors = { { 0, 1, 0.5 }, { 0, 10, 0.276 }, { 0, 1, 0.34 },
{ 0.44, 1, 0 }, { 0.84, 1, 0 }, { 1, 0.573, 0 }, { 1, 0.22, 0 }, },
pviewer = {
scrollTriangle = { 0.8, 0.1, 0.2 },
itemText = { 0, 0, 0 },
unknown = { 0.5, 0.5, 0.5 },
scrollLine = { 0, 0, 0 },
circle = { 1, 0, 0 },
},
selectedLanguageBorder = { 1, 0.3, 0.2 },
languageMenuText = { 1, 1, 1 },
}
return pallete