@cartridge/controller 0.5.0 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build$colon$deps.log +116 -115
- package/.turbo/turbo-build.log +120 -0
- package/.turbo/turbo-format.log +25 -0
- package/dist/account.d.ts +2 -2
- package/dist/account.js +19 -4
- package/dist/account.js.map +1 -1
- package/dist/constants.d.ts +2 -1
- package/dist/constants.js +2 -0
- package/dist/constants.js.map +1 -1
- package/dist/controller.d.ts +2 -2
- package/dist/controller.js +28 -188
- package/dist/controller.js.map +1 -1
- package/dist/iframe/base.d.ts +2 -2
- package/dist/iframe/base.js +3 -177
- package/dist/iframe/base.js.map +1 -1
- package/dist/iframe/index.d.ts +2 -2
- package/dist/iframe/index.js +8 -180
- package/dist/iframe/index.js.map +1 -1
- package/dist/iframe/keychain.d.ts +2 -2
- package/dist/iframe/keychain.js +3 -177
- package/dist/iframe/keychain.js.map +1 -1
- package/dist/iframe/profile.d.ts +2 -2
- package/dist/iframe/profile.js +8 -180
- package/dist/iframe/profile.js.map +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +167 -189
- package/dist/index.js.map +1 -1
- package/dist/lookup.d.ts +4 -0
- package/dist/lookup.js +56 -0
- package/dist/lookup.js.map +1 -0
- package/dist/provider.d.ts +2 -2
- package/dist/session/account.d.ts +2 -3
- package/dist/session/account.js +13 -171
- package/dist/session/account.js.map +1 -1
- package/dist/session/index.d.ts +2 -3
- package/dist/session/index.js +40 -172
- package/dist/session/index.js.map +1 -1
- package/dist/session/provider.d.ts +4 -4
- package/dist/session/provider.js +39 -3
- package/dist/session/provider.js.map +1 -1
- package/dist/telegram/provider.d.ts +7 -4
- package/dist/telegram/provider.js +39 -3
- package/dist/telegram/provider.js.map +1 -1
- package/dist/{types-BkXOAuzX.d.ts → types-1WsOoNO2.d.ts} +17 -30
- package/dist/types.d.ts +2 -2
- package/dist/types.js.map +1 -1
- package/dist/utils.d.ts +6 -1
- package/dist/utils.js +101 -3
- package/dist/utils.js.map +1 -1
- package/package.json +5 -4
- package/src/account.ts +2 -1
- package/src/constants.ts +1 -0
- package/src/controller.ts +2 -3
- package/src/iframe/base.ts +3 -9
- package/src/iframe/profile.ts +5 -3
- package/src/index.ts +3 -1
- package/src/lookup.ts +68 -0
- package/src/session/account.ts +0 -1
- package/src/session/index.ts +0 -2
- package/src/session/provider.ts +5 -4
- package/src/telegram/provider.ts +8 -7
- package/src/types.ts +25 -34
- package/src/utils.ts +122 -2
- package/dist/presets.d.ts +0 -9
- package/dist/presets.js +0 -170
- package/dist/presets.js.map +0 -1
- package/src/presets.ts +0 -167
package/dist/presets.js
DELETED
|
@@ -1,170 +0,0 @@
|
|
|
1
|
-
// src/presets.ts
|
|
2
|
-
var defaultPresets = {
|
|
3
|
-
cartridge: {
|
|
4
|
-
id: "cartridge",
|
|
5
|
-
name: "Cartridge",
|
|
6
|
-
icon: "/whitelabel/cartridge/icon.svg",
|
|
7
|
-
cover: {
|
|
8
|
-
light: "/whitelabel/cartridge/cover-light.png",
|
|
9
|
-
dark: "/whitelabel/cartridge/cover-dark.png"
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
"force-prime": {
|
|
13
|
-
id: "force-prime",
|
|
14
|
-
name: "Force Prime",
|
|
15
|
-
icon: "/whitelabel/force-prime/icon.png",
|
|
16
|
-
cover: "/whitelabel/force-prime/cover.png",
|
|
17
|
-
colors: {
|
|
18
|
-
primary: "#E1CC89"
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
paved: {
|
|
22
|
-
id: "paved",
|
|
23
|
-
name: "Paved",
|
|
24
|
-
icon: "/whitelabel/paved/icon.svg",
|
|
25
|
-
cover: "/whitelabel/paved/cover.png",
|
|
26
|
-
colors: {
|
|
27
|
-
primary: "#B0CAF8"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
eternum: {
|
|
31
|
-
id: "eternum",
|
|
32
|
-
name: "Eternum",
|
|
33
|
-
icon: "/whitelabel/eternum/icon.gif",
|
|
34
|
-
cover: "/whitelabel/eternum/cover.png",
|
|
35
|
-
colors: {
|
|
36
|
-
primary: "#CE9822"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
pistols: {
|
|
40
|
-
id: "pistols",
|
|
41
|
-
name: "Pistols at Ten Blocks",
|
|
42
|
-
icon: "/whitelabel/pistols/icon.png",
|
|
43
|
-
cover: "/whitelabel/pistols/cover.png",
|
|
44
|
-
colors: {
|
|
45
|
-
primary: "#EF9758"
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
pixelaw: {
|
|
49
|
-
id: "pixelaw",
|
|
50
|
-
name: "Pixelaw",
|
|
51
|
-
icon: "/whitelabel/pixelaw/icon.svg",
|
|
52
|
-
cover: "/whitelabel/pixelaw/cover.png",
|
|
53
|
-
colors: {
|
|
54
|
-
primary: "#7C00B1",
|
|
55
|
-
primaryForeground: "white"
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
"dope-wars": {
|
|
59
|
-
id: "dope-wars",
|
|
60
|
-
name: "Dope Wars",
|
|
61
|
-
icon: "/whitelabel/dope-wars/icon.png",
|
|
62
|
-
cover: "/whitelabel/dope-wars/cover.png",
|
|
63
|
-
colors: {
|
|
64
|
-
primary: "#11ED83"
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
zkastle: {
|
|
68
|
-
id: "zkastle",
|
|
69
|
-
name: "zKastle",
|
|
70
|
-
icon: "/whitelabel/zkastle/icon.svg",
|
|
71
|
-
cover: "/whitelabel/zkastle/cover.png",
|
|
72
|
-
colors: {
|
|
73
|
-
primary: "#E50D2C"
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
"loot-survivor": {
|
|
77
|
-
id: "loot-survivor",
|
|
78
|
-
name: "Loot Survivor",
|
|
79
|
-
icon: "/whitelabel/loot-survivor/icon.png",
|
|
80
|
-
cover: "/whitelabel/loot-survivor/cover.png",
|
|
81
|
-
colors: {
|
|
82
|
-
primary: "#33FF33"
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
zktt: {
|
|
86
|
-
id: "zktt",
|
|
87
|
-
name: "zKTT",
|
|
88
|
-
icon: "/whitelabel/zktt/icon.png",
|
|
89
|
-
cover: "/whitelabel/zktt/cover.png",
|
|
90
|
-
colors: {
|
|
91
|
-
primary: "#FFFFFF"
|
|
92
|
-
}
|
|
93
|
-
},
|
|
94
|
-
"tale-weaver": {
|
|
95
|
-
id: "tale-weaver",
|
|
96
|
-
name: "Tale Weaver",
|
|
97
|
-
icon: "/whitelabel/tale-weaver/icon.png",
|
|
98
|
-
cover: "/whitelabel/tale-weaver/cover.png",
|
|
99
|
-
colors: {
|
|
100
|
-
primary: "#fce377"
|
|
101
|
-
}
|
|
102
|
-
},
|
|
103
|
-
"realm-of-ra": {
|
|
104
|
-
id: "realm-of-ra",
|
|
105
|
-
name: "Realm of Ra",
|
|
106
|
-
icon: "/whitelabel/realm-of-ra/icon.png",
|
|
107
|
-
cover: "/whitelabel/realm-of-ra/cover.png",
|
|
108
|
-
colors: {
|
|
109
|
-
primary: "#de9534"
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
"jokers-of-neon": {
|
|
113
|
-
id: "jokers-of-neon",
|
|
114
|
-
name: "Jokers of Neon",
|
|
115
|
-
icon: "/whitelabel/jokers-of-neon/icon.png",
|
|
116
|
-
cover: "/whitelabel/jokers-of-neon/cover.png",
|
|
117
|
-
colors: {
|
|
118
|
-
primary: "#A144B2"
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
flippyflop: {
|
|
122
|
-
id: "flippyflop",
|
|
123
|
-
name: "FlippyFlop",
|
|
124
|
-
icon: "/whitelabel/flippyflop/icon.png",
|
|
125
|
-
cover: "/whitelabel/flippyflop/cover.png",
|
|
126
|
-
colors: {
|
|
127
|
-
primary: "#F38332"
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
"savage-summit": {
|
|
131
|
-
id: "savage-summit",
|
|
132
|
-
name: "Savage Summit",
|
|
133
|
-
icon: "/whitelabel/savage-summit/icon.png",
|
|
134
|
-
cover: "/whitelabel/savage-summit/cover.png",
|
|
135
|
-
colors: {
|
|
136
|
-
primary: "#fbf7da"
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
"dark-shuffle": {
|
|
140
|
-
id: "dark-shuffle",
|
|
141
|
-
name: "Dark Shuffle",
|
|
142
|
-
icon: "/whitelabel/dark-shuffle/icon.svg",
|
|
143
|
-
cover: "/whitelabel/dark-shuffle/cover.png",
|
|
144
|
-
colors: {
|
|
145
|
-
primary: "#F59100"
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
"blob-arena": {
|
|
149
|
-
id: "blob-arena",
|
|
150
|
-
name: "Blob Arena",
|
|
151
|
-
icon: "/whitelabel/blob-arena/icon.png",
|
|
152
|
-
cover: "/whitelabel/blob-arena/cover.png",
|
|
153
|
-
colors: {
|
|
154
|
-
primary: "#980f06"
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
zkube: {
|
|
158
|
-
id: "zkube",
|
|
159
|
-
name: "zKube",
|
|
160
|
-
icon: "/whitelabel/zkube/icon.png",
|
|
161
|
-
cover: "/whitelabel/zkube/cover.png",
|
|
162
|
-
colors: {
|
|
163
|
-
primary: "#5bc3e6"
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
};
|
|
167
|
-
export {
|
|
168
|
-
defaultPresets
|
|
169
|
-
};
|
|
170
|
-
//# sourceMappingURL=presets.js.map
|
package/dist/presets.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/presets.ts"],"sourcesContent":["import { ControllerThemePresets } from \"./types\";\n\nexport const defaultPresets: ControllerThemePresets = {\n cartridge: {\n id: \"cartridge\",\n name: \"Cartridge\",\n icon: \"/whitelabel/cartridge/icon.svg\",\n cover: {\n light: \"/whitelabel/cartridge/cover-light.png\",\n dark: \"/whitelabel/cartridge/cover-dark.png\",\n },\n },\n \"force-prime\": {\n id: \"force-prime\",\n name: \"Force Prime\",\n icon: \"/whitelabel/force-prime/icon.png\",\n cover: \"/whitelabel/force-prime/cover.png\",\n colors: {\n primary: \"#E1CC89\",\n },\n },\n paved: {\n id: \"paved\",\n name: \"Paved\",\n icon: \"/whitelabel/paved/icon.svg\",\n cover: \"/whitelabel/paved/cover.png\",\n colors: {\n primary: \"#B0CAF8\",\n },\n },\n eternum: {\n id: \"eternum\",\n name: \"Eternum\",\n icon: \"/whitelabel/eternum/icon.gif\",\n cover: \"/whitelabel/eternum/cover.png\",\n colors: {\n primary: \"#CE9822\",\n },\n },\n pistols: {\n id: \"pistols\",\n name: \"Pistols at Ten Blocks\",\n icon: \"/whitelabel/pistols/icon.png\",\n cover: \"/whitelabel/pistols/cover.png\",\n colors: {\n primary: \"#EF9758\",\n },\n },\n pixelaw: {\n id: \"pixelaw\",\n name: \"Pixelaw\",\n icon: \"/whitelabel/pixelaw/icon.svg\",\n cover: \"/whitelabel/pixelaw/cover.png\",\n colors: {\n primary: \"#7C00B1\",\n primaryForeground: \"white\",\n },\n },\n \"dope-wars\": {\n id: \"dope-wars\",\n name: \"Dope Wars\",\n icon: \"/whitelabel/dope-wars/icon.png\",\n cover: \"/whitelabel/dope-wars/cover.png\",\n colors: {\n primary: \"#11ED83\",\n },\n },\n zkastle: {\n id: \"zkastle\",\n name: \"zKastle\",\n icon: \"/whitelabel/zkastle/icon.svg\",\n cover: \"/whitelabel/zkastle/cover.png\",\n colors: {\n primary: \"#E50D2C\",\n },\n },\n \"loot-survivor\": {\n id: \"loot-survivor\",\n name: \"Loot Survivor\",\n icon: \"/whitelabel/loot-survivor/icon.png\",\n cover: \"/whitelabel/loot-survivor/cover.png\",\n colors: {\n primary: \"#33FF33\",\n },\n },\n zktt: {\n id: \"zktt\",\n name: \"zKTT\",\n icon: \"/whitelabel/zktt/icon.png\",\n cover: \"/whitelabel/zktt/cover.png\",\n colors: {\n primary: \"#FFFFFF\",\n },\n },\n \"tale-weaver\": {\n id: \"tale-weaver\",\n name: \"Tale Weaver\",\n icon: \"/whitelabel/tale-weaver/icon.png\",\n cover: \"/whitelabel/tale-weaver/cover.png\",\n colors: {\n primary: \"#fce377\",\n },\n },\n \"realm-of-ra\": {\n id: \"realm-of-ra\",\n name: \"Realm of Ra\",\n icon: \"/whitelabel/realm-of-ra/icon.png\",\n cover: \"/whitelabel/realm-of-ra/cover.png\",\n colors: {\n primary: \"#de9534\",\n },\n },\n \"jokers-of-neon\": {\n id: \"jokers-of-neon\",\n name: \"Jokers of Neon\",\n icon: \"/whitelabel/jokers-of-neon/icon.png\",\n cover: \"/whitelabel/jokers-of-neon/cover.png\",\n colors: {\n primary: \"#A144B2\",\n },\n },\n flippyflop: {\n id: \"flippyflop\",\n name: \"FlippyFlop\",\n icon: \"/whitelabel/flippyflop/icon.png\",\n cover: \"/whitelabel/flippyflop/cover.png\",\n colors: {\n primary: \"#F38332\",\n },\n },\n \"savage-summit\": {\n id: \"savage-summit\",\n name: \"Savage Summit\",\n icon: \"/whitelabel/savage-summit/icon.png\",\n cover: \"/whitelabel/savage-summit/cover.png\",\n colors: {\n primary: \"#fbf7da\",\n },\n },\n \"dark-shuffle\": {\n id: \"dark-shuffle\",\n name: \"Dark Shuffle\",\n icon: \"/whitelabel/dark-shuffle/icon.svg\",\n cover: \"/whitelabel/dark-shuffle/cover.png\",\n colors: {\n primary: \"#F59100\",\n },\n },\n \"blob-arena\": {\n id: \"blob-arena\",\n name: \"Blob Arena\",\n icon: \"/whitelabel/blob-arena/icon.png\",\n cover: \"/whitelabel/blob-arena/cover.png\",\n colors: {\n primary: \"#980f06\",\n },\n },\n zkube: {\n id: \"zkube\",\n name: \"zKube\",\n icon: \"/whitelabel/zkube/icon.png\",\n cover: \"/whitelabel/zkube/cover.png\",\n colors: {\n primary: \"#5bc3e6\",\n },\n },\n};\n"],"mappings":"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","names":[]}
|
package/src/presets.ts
DELETED
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
import { ControllerThemePresets } from "./types";
|
|
2
|
-
|
|
3
|
-
export const defaultPresets: ControllerThemePresets = {
|
|
4
|
-
cartridge: {
|
|
5
|
-
id: "cartridge",
|
|
6
|
-
name: "Cartridge",
|
|
7
|
-
icon: "/whitelabel/cartridge/icon.svg",
|
|
8
|
-
cover: {
|
|
9
|
-
light: "/whitelabel/cartridge/cover-light.png",
|
|
10
|
-
dark: "/whitelabel/cartridge/cover-dark.png",
|
|
11
|
-
},
|
|
12
|
-
},
|
|
13
|
-
"force-prime": {
|
|
14
|
-
id: "force-prime",
|
|
15
|
-
name: "Force Prime",
|
|
16
|
-
icon: "/whitelabel/force-prime/icon.png",
|
|
17
|
-
cover: "/whitelabel/force-prime/cover.png",
|
|
18
|
-
colors: {
|
|
19
|
-
primary: "#E1CC89",
|
|
20
|
-
},
|
|
21
|
-
},
|
|
22
|
-
paved: {
|
|
23
|
-
id: "paved",
|
|
24
|
-
name: "Paved",
|
|
25
|
-
icon: "/whitelabel/paved/icon.svg",
|
|
26
|
-
cover: "/whitelabel/paved/cover.png",
|
|
27
|
-
colors: {
|
|
28
|
-
primary: "#B0CAF8",
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
eternum: {
|
|
32
|
-
id: "eternum",
|
|
33
|
-
name: "Eternum",
|
|
34
|
-
icon: "/whitelabel/eternum/icon.gif",
|
|
35
|
-
cover: "/whitelabel/eternum/cover.png",
|
|
36
|
-
colors: {
|
|
37
|
-
primary: "#CE9822",
|
|
38
|
-
},
|
|
39
|
-
},
|
|
40
|
-
pistols: {
|
|
41
|
-
id: "pistols",
|
|
42
|
-
name: "Pistols at Ten Blocks",
|
|
43
|
-
icon: "/whitelabel/pistols/icon.png",
|
|
44
|
-
cover: "/whitelabel/pistols/cover.png",
|
|
45
|
-
colors: {
|
|
46
|
-
primary: "#EF9758",
|
|
47
|
-
},
|
|
48
|
-
},
|
|
49
|
-
pixelaw: {
|
|
50
|
-
id: "pixelaw",
|
|
51
|
-
name: "Pixelaw",
|
|
52
|
-
icon: "/whitelabel/pixelaw/icon.svg",
|
|
53
|
-
cover: "/whitelabel/pixelaw/cover.png",
|
|
54
|
-
colors: {
|
|
55
|
-
primary: "#7C00B1",
|
|
56
|
-
primaryForeground: "white",
|
|
57
|
-
},
|
|
58
|
-
},
|
|
59
|
-
"dope-wars": {
|
|
60
|
-
id: "dope-wars",
|
|
61
|
-
name: "Dope Wars",
|
|
62
|
-
icon: "/whitelabel/dope-wars/icon.png",
|
|
63
|
-
cover: "/whitelabel/dope-wars/cover.png",
|
|
64
|
-
colors: {
|
|
65
|
-
primary: "#11ED83",
|
|
66
|
-
},
|
|
67
|
-
},
|
|
68
|
-
zkastle: {
|
|
69
|
-
id: "zkastle",
|
|
70
|
-
name: "zKastle",
|
|
71
|
-
icon: "/whitelabel/zkastle/icon.svg",
|
|
72
|
-
cover: "/whitelabel/zkastle/cover.png",
|
|
73
|
-
colors: {
|
|
74
|
-
primary: "#E50D2C",
|
|
75
|
-
},
|
|
76
|
-
},
|
|
77
|
-
"loot-survivor": {
|
|
78
|
-
id: "loot-survivor",
|
|
79
|
-
name: "Loot Survivor",
|
|
80
|
-
icon: "/whitelabel/loot-survivor/icon.png",
|
|
81
|
-
cover: "/whitelabel/loot-survivor/cover.png",
|
|
82
|
-
colors: {
|
|
83
|
-
primary: "#33FF33",
|
|
84
|
-
},
|
|
85
|
-
},
|
|
86
|
-
zktt: {
|
|
87
|
-
id: "zktt",
|
|
88
|
-
name: "zKTT",
|
|
89
|
-
icon: "/whitelabel/zktt/icon.png",
|
|
90
|
-
cover: "/whitelabel/zktt/cover.png",
|
|
91
|
-
colors: {
|
|
92
|
-
primary: "#FFFFFF",
|
|
93
|
-
},
|
|
94
|
-
},
|
|
95
|
-
"tale-weaver": {
|
|
96
|
-
id: "tale-weaver",
|
|
97
|
-
name: "Tale Weaver",
|
|
98
|
-
icon: "/whitelabel/tale-weaver/icon.png",
|
|
99
|
-
cover: "/whitelabel/tale-weaver/cover.png",
|
|
100
|
-
colors: {
|
|
101
|
-
primary: "#fce377",
|
|
102
|
-
},
|
|
103
|
-
},
|
|
104
|
-
"realm-of-ra": {
|
|
105
|
-
id: "realm-of-ra",
|
|
106
|
-
name: "Realm of Ra",
|
|
107
|
-
icon: "/whitelabel/realm-of-ra/icon.png",
|
|
108
|
-
cover: "/whitelabel/realm-of-ra/cover.png",
|
|
109
|
-
colors: {
|
|
110
|
-
primary: "#de9534",
|
|
111
|
-
},
|
|
112
|
-
},
|
|
113
|
-
"jokers-of-neon": {
|
|
114
|
-
id: "jokers-of-neon",
|
|
115
|
-
name: "Jokers of Neon",
|
|
116
|
-
icon: "/whitelabel/jokers-of-neon/icon.png",
|
|
117
|
-
cover: "/whitelabel/jokers-of-neon/cover.png",
|
|
118
|
-
colors: {
|
|
119
|
-
primary: "#A144B2",
|
|
120
|
-
},
|
|
121
|
-
},
|
|
122
|
-
flippyflop: {
|
|
123
|
-
id: "flippyflop",
|
|
124
|
-
name: "FlippyFlop",
|
|
125
|
-
icon: "/whitelabel/flippyflop/icon.png",
|
|
126
|
-
cover: "/whitelabel/flippyflop/cover.png",
|
|
127
|
-
colors: {
|
|
128
|
-
primary: "#F38332",
|
|
129
|
-
},
|
|
130
|
-
},
|
|
131
|
-
"savage-summit": {
|
|
132
|
-
id: "savage-summit",
|
|
133
|
-
name: "Savage Summit",
|
|
134
|
-
icon: "/whitelabel/savage-summit/icon.png",
|
|
135
|
-
cover: "/whitelabel/savage-summit/cover.png",
|
|
136
|
-
colors: {
|
|
137
|
-
primary: "#fbf7da",
|
|
138
|
-
},
|
|
139
|
-
},
|
|
140
|
-
"dark-shuffle": {
|
|
141
|
-
id: "dark-shuffle",
|
|
142
|
-
name: "Dark Shuffle",
|
|
143
|
-
icon: "/whitelabel/dark-shuffle/icon.svg",
|
|
144
|
-
cover: "/whitelabel/dark-shuffle/cover.png",
|
|
145
|
-
colors: {
|
|
146
|
-
primary: "#F59100",
|
|
147
|
-
},
|
|
148
|
-
},
|
|
149
|
-
"blob-arena": {
|
|
150
|
-
id: "blob-arena",
|
|
151
|
-
name: "Blob Arena",
|
|
152
|
-
icon: "/whitelabel/blob-arena/icon.png",
|
|
153
|
-
cover: "/whitelabel/blob-arena/cover.png",
|
|
154
|
-
colors: {
|
|
155
|
-
primary: "#980f06",
|
|
156
|
-
},
|
|
157
|
-
},
|
|
158
|
-
zkube: {
|
|
159
|
-
id: "zkube",
|
|
160
|
-
name: "zKube",
|
|
161
|
-
icon: "/whitelabel/zkube/icon.png",
|
|
162
|
-
cover: "/whitelabel/zkube/cover.png",
|
|
163
|
-
colors: {
|
|
164
|
-
primary: "#5bc3e6",
|
|
165
|
-
},
|
|
166
|
-
},
|
|
167
|
-
};
|