-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
117 lines (99 loc) · 4.11 KB
/
Copy pathconfig.js
File metadata and controls
117 lines (99 loc) · 4.11 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
const musicConfig = {
"active": true,
"music-file-name": "music.mp3",
"should-music-autoplay": true
}
const videoConfig = {
"active": true,
"video-file-name": "video.mp4",
"use-youtube-instead": {
"active": true,
"youtube-video-id": "Tm8_9NXf4Zc"
}
}
const textTips = [
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.",
"Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.",
"Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage.",
"The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero.",
]
const progressBarConfig = {
"segmented-progress-bar": true,
"normal-progress-bar": false,
}
const serverCode = "jm85gm"
const showServerOnlinePlayerCount = true
const showServerName = true
const serverName = "Binary 01"
const showLogo = true
const rotatingLogo = true
const reflectiveTextTips = true
const reflectiveLoadingText = true
const backgroundEffectNonReactiveLinesDots = false
const backgroundEffectReactiveLinesDots = false
const backgroundEffectGeometryangle = false
const backgroundEffectGradientOverlay = false
const backgroundEffectGradientOverlayColors = ["#9400D3", "#4B0082", "#0000FF", "#00FF00", "#FFFF00", "#FF7F00", "#FF0000"]
const currentTheme = "red"
const colorThemes = {
"blue": {
"background-overlay-radial": true,
"background-overlay-color": "rgba(117, 182, 255, 0.1)",
"background-overlay-radial-second-color": "rgba(0,0,0,0.1)",
"normal-colors": "rgba(117, 182, 255,1.0)",
"accent-colors": "rgba(59, 151, 255,1.0)",
"loading-bar-colors" : {
"pulsating-colors": {
"on": {
"color-1": "rgba(255, 255, 255, 1)",
"color-2": "rgba(117, 182, 255, 0.5)",
"color-3": "rgba(105, 135, 255, 1)"
},
"off": {
"color-1": "rgba(255, 255, 255, 0)",
"color-2": "rgba(117, 182, 255, 0.5)",
"color-3": "rgba(105, 135, 255, 0.3)"
}
},
"active-colors": {
"color-1": "rgba(255, 255, 255, 0.9)",
"color-2": "rgba(117, 182, 255, 0.5)",
"color-3": "rgba(117, 182, 214, 0.5)"
},
"inactive-colors": {
"color-1": "rgba(117, 182, 255, 0.4)",
"color-2": "rgba(117, 182, 255, 0.1)",
},
}
},
"red": {
"background-overlay-radial": true,
"background-overlay-color": "rgba(255, 117, 117, 0.15)",
"background-overlay-radial-second-color": "rgba(0,0,0,0.1)",
"normal-colors": "rgba(252, 68, 68,1.0)",
"accent-colors": "rgba(247, 47, 47,1.0)",
"loading-bar-colors" : {
"pulsating-colors": {
"on": {
"color-1": "rgba(255, 255, 255, 1)",
"color-2": "rgba(252, 43, 43, 0.5)",
"color-3": "rgba(255, 84, 84, 1)"
},
"off": {
"color-1": "rgba(255, 255, 255, 0)",
"color-2": "rgba(252, 43, 43, 0.5)",
"color-3": "rgba(255, 84, 84, 0.3)"
}
},
"active-colors": {
"color-1": "rgba(255, 255, 255, 0.9)",
"color-2": "rgba(252, 43, 43, 0.5)",
"color-3": "rgba(255, 84, 84, 0.5)"
},
"inactive-colors": {
"color-1": "rgba(252, 43, 43, 0.4)",
"color-2": "rgba(255, 84, 84, 0.1)"
},
}
}
}