rapido-fca 0.0.6 → 0.0.10

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.
Files changed (55) hide show
  1. package/index.js +24 -17
  2. package/package.json +1 -1
  3. package/src/addExternalModule.js +23 -19
  4. package/src/addUserToGroup.js +97 -99
  5. package/src/changeAdminStatus.js +62 -86
  6. package/src/changeArchivedStatus.js +49 -49
  7. package/src/changeAvatar.js +108 -118
  8. package/src/changeBio.js +64 -63
  9. package/src/changeBlockedStatus.js +38 -40
  10. package/src/changeGroupImage.js +126 -129
  11. package/src/changeNickname.js +49 -49
  12. package/src/changeThreadColor.js +53 -53
  13. package/src/changeThreadEmoji.js +45 -45
  14. package/src/createNewGroup.js +72 -74
  15. package/src/createPoll.js +59 -59
  16. package/src/deleteMessage.js +50 -50
  17. package/src/deleteThread.js +50 -50
  18. package/src/editMessage.js +49 -51
  19. package/src/forwardAttachment.js +54 -54
  20. package/src/getCurrentUserID.js +3 -3
  21. package/src/getEmojiUrl.js +17 -17
  22. package/src/getFriendsList.js +67 -67
  23. package/src/getMessage.js +767 -806
  24. package/src/getThreadHistory.js +642 -656
  25. package/src/getThreadInfo.js +1 -1
  26. package/src/getThreadList.js +227 -199
  27. package/src/getThreadPictures.js +71 -51
  28. package/src/getUserID.js +58 -53
  29. package/src/getUserInfo.js +60 -52
  30. package/src/handleFriendRequest.js +65 -41
  31. package/src/handleMessageRequest.js +60 -42
  32. package/src/httpGet.js +57 -49
  33. package/src/httpPost.js +57 -48
  34. package/src/httpPostFormData.js +63 -0
  35. package/src/listenMqtt.js +827 -827
  36. package/src/logout.js +61 -61
  37. package/src/markAsDelivered.js +53 -42
  38. package/src/markAsRead.js +69 -59
  39. package/src/markAsReadAll.js +42 -32
  40. package/src/markAsSeen.js +54 -43
  41. package/src/muteThread.js +47 -40
  42. package/src/refreshFb_dtsg.js +69 -77
  43. package/src/removeUserFromGroup.js +67 -67
  44. package/src/resolvePhotoUrl.js +34 -34
  45. package/src/searchForThread.js +43 -43
  46. package/src/sendMessage.js +228 -80
  47. package/src/sendTypingIndicator.js +88 -86
  48. package/src/setEmojiReaction.js +59 -0
  49. package/src/setPostReaction.js +87 -90
  50. package/src/setTitle.js +72 -76
  51. package/src/threadColors.js +121 -121
  52. package/src/unfriend.js +43 -43
  53. package/src/unsendMessage.js +38 -34
  54. package/src/uploadAttachment.js +81 -79
  55. package/src/videoAttachment.js +76 -0
package/src/getMessage.js CHANGED
@@ -6,830 +6,791 @@
6
6
  */
7
7
 
8
8
  const utils = require("../utils");
9
- // @NethWs3Dev
9
+ const log = require("npmlog");
10
+
10
11
 
11
12
  function formatMessage(threadID, data) {
12
- switch (data.__typename) {
13
- case "ThreadNameMessage":
14
- return {
15
- type: "event",
16
- threadID: threadID,
17
- messageID: data.message_id,
18
- logMessageType: "log:thread-name",
19
- logMessageData: {
20
- name: data.thread_name,
21
- },
22
- logMessageBody: data.snippet,
23
- timestamp: data.timestamp_precise,
24
- author: data.message_sender.id,
25
- };
26
- case "ThreadImageMessage":
27
- const metadata = data.image_with_metadata;
28
- return {
29
- type: "event",
30
- threadID: threadID,
31
- messageID: data.message_id,
32
- logMessageType: "log:thread-image",
33
- logMessageData: metadata
34
- ? {
35
- attachmentID: metadata.legacy_attachment_id,
36
- width: metadata.original_dimensions.x,
37
- height: metadata.original_dimensions.y,
38
- url: metadata.preview.uri,
39
- }
40
- : {
41
- attachmentID: null,
42
- width: null,
43
- height: null,
44
- url: null,
45
- },
46
- logMessageBody: data.snippet,
47
- timestamp: data.timestamp_precise,
48
- author: data.message_sender.id,
49
- };
50
- case "GenericAdminTextMessage":
51
- switch (data.extensible_message_admin_text_type) {
52
- case "CHANGE_THREAD_THEME":
53
- return {
54
- type: "event",
55
- threadID: threadID,
56
- messageID: data.message_id,
57
- logMessageType: "log:thread-color",
58
- logMessageData: colors.find(
59
- (color) =>
60
- color.theme_color ===
61
- data.extensible_message_admin_text.theme_color,
62
- ) || {
63
- theme_color: data.extensible_message_admin_text.theme_color,
64
- theme_id: null,
65
- theme_emoji: null,
66
- gradient: null,
67
- should_show_icon: null,
68
- theme_name_with_subtitle: null,
69
- },
70
- logMessageBody: data.snippet,
71
- timestamp: data.timestamp_precise,
72
- author: data.message_sender.id,
73
- };
74
- case "CHANGE_THREAD_ICON":
75
- const thread_icon = data.extensible_message_admin_text.thread_icon;
76
- return {
77
- type: "event",
78
- threadID: threadID,
79
- messageID: data.message_id,
80
- logMessageType: "log:thread-icon",
81
- logMessageData: {
82
- thread_icon_url: `https://static.xx.fbcdn.net/images/emoji.php/v9/t3c/1/16/${thread_icon
83
- .codePointAt(0)
84
- .toString(16)}.png`,
85
- thread_icon: thread_icon,
86
- },
87
- logMessageBody: data.snippet,
88
- timestamp: data.timestamp_precise,
89
- author: data.message_sender.id,
90
- };
91
- case "CHANGE_THREAD_NICKNAME":
92
- return {
93
- type: "event",
94
- threadID: threadID,
95
- messageID: data.message_id,
96
- logMessageType: "log:user-nickname",
97
- logMessageData: {
98
- nickname: data.extensible_message_admin_text.nickname,
99
- participant_id: data.extensible_message_admin_text.participant_id,
100
- },
101
- logMessageBody: data.snippet,
102
- timestamp: data.timestamp_precise,
103
- author: data.message_sender.id,
104
- };
105
- case "GROUP_POLL":
106
- const question = data.extensible_message_admin_text.question;
107
- return {
108
- type: "event",
109
- threadID: threadID,
110
- messageID: data.message_id,
111
- logMessageType: "log:thread-poll",
112
- logMessageData: {
113
- question_json: JSON.stringify({
114
- id: question.id,
115
- text: question.text,
116
- total_count: data.extensible_message_admin_text.total_count,
117
- viewer_has_voted: question.viewer_has_voted,
118
- question_type: "",
119
- creator_id: data.message_sender.id,
120
- options: question.options.nodes.map((option) => ({
121
- id: option.id,
122
- text: option.text,
123
- total_count: option.voters.nodes.length,
124
- viewer_has_voted: option.viewer_has_voted,
125
- voters: option.voters.nodes.map((voter) => voter.id),
126
- })),
127
- }),
128
- event_type:
129
- data.extensible_message_admin_text.event_type.toLowerCase(),
130
- question_id: question.id,
131
- },
132
- logMessageBody: data.snippet,
133
- timestamp: data.timestamp_precise,
134
- author: data.message_sender.id,
135
- };
136
- default:
137
- throw new Error(
138
- `Unknown admin text type: "${data.extensible_message_admin_text_type}", if this happens to you let me know when it happens. Please open an issue at https://github.com/ntkhang03/fb-chat-api/issues.`,
139
- );
140
- }
141
- case "UserMessage":
142
- return {
143
- senderID: data.message_sender.id,
144
- body: data.message.text,
145
- threadID: threadID,
146
- messageID: data.message_id,
147
- reactions: data.message_reactions.map((r) => ({
148
- [r.user.id]: r.reaction,
149
- })),
150
- attachments:
151
- data.blob_attachments && data.blob_attachments.length > 0
152
- ? data.blob_attachments.length.map((att) => {
153
- let x;
154
- try {
155
- x = utils._formatAttachment(att);
156
- } catch (ex) {
157
- x = att;
158
- x.error = ex;
159
- x.type = "unknown";
160
- }
161
- return x;
162
- })
163
- : data.extensible_attachment &&
164
- Object.keys(data.extensible_attachment).length > 0
165
- ? [
166
- {
167
- type: "share",
168
- ID: data.extensible_attachment.legacy_attachment_id,
169
- url: data.extensible_attachment.story_attachment.url,
13
+ switch (data.__typename) {
14
+ case "ThreadNameMessage":
15
+ return {
16
+ type: "event",
17
+ threadID: threadID,
18
+ messageID: data.message_id,
19
+ logMessageType: "log:thread-name",
20
+ logMessageData: {
21
+ name: data.thread_name
22
+ },
23
+ logMessageBody: data.snippet,
24
+ timestamp: data.timestamp_precise,
25
+ author: data.message_sender.id
26
+ };
27
+ case "ThreadImageMessage":
28
+ const metadata = data.image_with_metadata;
29
+ return {
30
+ type: "event",
31
+ threadID: threadID,
32
+ messageID: data.message_id,
33
+ logMessageType: "log:thread-image",
34
+ logMessageData: metadata ? {
35
+ attachmentID: metadata.legacy_attachment_id,
36
+ width: metadata.original_dimensions.x,
37
+ height: metadata.original_dimensions.y,
38
+ url: metadata.preview.uri
39
+ } :
40
+ {
41
+ attachmentID: null,
42
+ width: null,
43
+ height: null,
44
+ url: null
45
+ },
46
+ logMessageBody: data.snippet,
47
+ timestamp: data.timestamp_precise,
48
+ author: data.message_sender.id
49
+ };
50
+ case "GenericAdminTextMessage":
51
+ switch (data.extensible_message_admin_text_type) {
52
+ case "CHANGE_THREAD_THEME":
53
+ return {
54
+ type: "event",
55
+ threadID: threadID,
56
+ messageID: data.message_id,
57
+ logMessageType: "log:thread-color",
58
+ logMessageData: colors.find(color => color.theme_color === data.extensible_message_admin_text.theme_color) || {
59
+ theme_color: data.extensible_message_admin_text.theme_color,
60
+ theme_id: null,
61
+ theme_emoji: null,
62
+ gradient: null,
63
+ should_show_icon: null,
64
+ theme_name_with_subtitle: null
65
+ },
66
+ logMessageBody: data.snippet,
67
+ timestamp: data.timestamp_precise,
68
+ author: data.message_sender.id
69
+ };
70
+ case "CHANGE_THREAD_ICON":
71
+ const thread_icon = data.extensible_message_admin_text.thread_icon;
72
+ return {
73
+ type: "event",
74
+ threadID: threadID,
75
+ messageID: data.message_id,
76
+ logMessageType: "log:thread-icon",
77
+ logMessageData: {
78
+ thread_icon_url: `https://static.xx.fbcdn.net/images/emoji.php/v9/t3c/1/16/${thread_icon.codePointAt(0).toString(16)}.png`,
79
+ thread_icon: thread_icon
80
+ },
81
+ logMessageBody: data.snippet,
82
+ timestamp: data.timestamp_precise,
83
+ author: data.message_sender.id
84
+ };
85
+ case "CHANGE_THREAD_NICKNAME":
86
+ return {
87
+ type: "event",
88
+ threadID: threadID,
89
+ messageID: data.message_id,
90
+ logMessageType: "log:user-nickname",
91
+ logMessageData: {
92
+ nickname: data.extensible_message_admin_text.nickname,
93
+ participant_id: data.extensible_message_admin_text.participant_id
94
+ },
95
+ logMessageBody: data.snippet,
96
+ timestamp: data.timestamp_precise,
97
+ author: data.message_sender.id
98
+ };
99
+ case "GROUP_POLL":
100
+ const question = data.extensible_message_admin_text.question;
101
+ return {
102
+ type: "event",
103
+ threadID: threadID,
104
+ messageID: data.message_id,
105
+ logMessageType: "log:thread-poll",
106
+ logMessageData: {
107
+ question_json: JSON.stringify({
108
+ id: question.id,
109
+ text: question.text,
110
+ total_count: data.extensible_message_admin_text.total_count,
111
+ viewer_has_voted: question.viewer_has_voted,
112
+ question_type: "",
113
+ creator_id: data.message_sender.id,
114
+ options: question.options.nodes.map(option => ({
115
+ id: option.id,
116
+ text: option.text,
117
+ total_count: option.voters.nodes.length,
118
+ viewer_has_voted: option.viewer_has_voted,
119
+ voters: option.voters.nodes.map(voter => voter.id)
120
+ }))
121
+ }),
122
+ event_type: data.extensible_message_admin_text.event_type.toLowerCase(),
123
+ question_id: question.id
124
+ },
125
+ logMessageBody: data.snippet,
126
+ timestamp: data.timestamp_precise,
127
+ author: data.message_sender.id
128
+ };
129
+ default:
130
+ throw new Error(`Unknown admin text type: "${data.extensible_message_admin_text_type}", if this happens to you let me know when it happens. Please open an issue at https://github.com/ntkhang03/fb-chat-api/issues.`);
131
+ }
132
+ case "UserMessage":
133
+ return {
134
+ senderID: data.message_sender.id,
135
+ body: data.message.text,
136
+ threadID: threadID,
137
+ messageID: data.message_id,
138
+ reactions: data.message_reactions.map(r => ({
139
+ [r.user.id]: r.reaction
140
+ })),
141
+ attachments: data.blob_attachments && data.blob_attachments.length > 0 ?
142
+ data.blob_attachments.length.map(att => {
143
+ let x;
144
+ try {
145
+ x = utils._formatAttachment(att);
146
+ } catch (ex) {
147
+ x = att;
148
+ x.error = ex;
149
+ x.type = "unknown";
150
+ }
151
+ return x;
152
+ }) :
153
+ data.extensible_attachment && Object.keys(data.extensible_attachment).length > 0 ?
154
+ [{
155
+ type: "share",
156
+ ID: data.extensible_attachment.legacy_attachment_id,
157
+ url: data.extensible_attachment.story_attachment.url,
170
158
 
171
- title:
172
- data.extensible_attachment.story_attachment
173
- .title_with_entities.text,
174
- description:
175
- data.extensible_attachment.story_attachment.description
176
- .text,
177
- source: data.extensible_attachment.story_attachment.source,
159
+ title: data.extensible_attachment.story_attachment.title_with_entities.text,
160
+ description: data.extensible_attachment.story_attachment.description.text,
161
+ source: data.extensible_attachment.story_attachment.source,
178
162
 
179
- image: (
180
- (data.extensible_attachment.story_attachment.media || {})
181
- .image || {}
182
- ).uri,
183
- width: (
184
- (data.extensible_attachment.story_attachment.media || {})
185
- .image || {}
186
- ).width,
187
- height: (
188
- (data.extensible_attachment.story_attachment.media || {})
189
- .image || {}
190
- ).height,
191
- playable:
192
- (data.extensible_attachment.story_attachment.media || {})
193
- .is_playable || false,
194
- duration:
195
- (data.extensible_attachment.story_attachment.media || {})
196
- .playable_duration_in_ms || 0,
163
+ image: ((data.extensible_attachment.story_attachment.media || {}).image || {}).uri,
164
+ width: ((data.extensible_attachment.story_attachment.media || {}).image || {}).width,
165
+ height: ((data.extensible_attachment.story_attachment.media || {}).image || {}).height,
166
+ playable: (data.extensible_attachment.story_attachment.media || {}).is_playable || false,
167
+ duration: (data.extensible_attachment.story_attachment.media || {}).playable_duration_in_ms || 0,
197
168
 
198
- subattachments: data.extensible_attachment.subattachments,
199
- properties:
200
- data.extensible_attachment.story_attachment.properties,
201
- },
202
- ]
203
- : [],
204
- mentions: data.message.ranges.map((mention) => ({
205
- [mention.entity.id]: data.message.text.substring(
206
- mention.offset,
207
- mention.offset + mention.length,
208
- ),
209
- })),
210
- timestamp: data.timestamp_precise,
211
- };
212
- default:
213
- throw new Error(
214
- `Unknown message type: "${data.__typename}", if this happens to you let me know when it happens. Please open an issue at https://github.com/ntkhang03/fb-chat-api/issues.`,
215
- );
216
- // If this happens to you let me know when it happens
217
- // Please open an issue at https://github.com/ntkhang03/fb-chat-api/issues.
218
- // return Object.assign({ type: "unknown", data });
219
- }
169
+ subattachments: data.extensible_attachment.subattachments,
170
+ properties: data.extensible_attachment.story_attachment.properties
171
+ }] :
172
+ [],
173
+ mentions: data.message.ranges.map(mention => ({
174
+ [mention.entity.id]: data.message.text.substring(mention.offset, mention.offset + mention.length)
175
+ })),
176
+ timestamp: data.timestamp_precise
177
+ };
178
+ default:
179
+ throw new Error(`Unknown message type: "${data.__typename}", if this happens to you let me know when it happens. Please open an issue at https://github.com/ntkhang03/fb-chat-api/issues.`);
180
+ // If this happens to you let me know when it happens
181
+ // Please open an issue at https://github.com/ntkhang03/fb-chat-api/issues.
182
+ // return Object.assign({ type: "unknown", data });
183
+ }
220
184
  }
221
185
 
186
+
222
187
  function parseDelta(threadID, delta) {
223
- if (delta.replied_to_message) {
224
- return Object.assign(
225
- {
226
- type: "message_reply",
227
- },
228
- formatMessage(threadID, delta),
229
- {
230
- messageReply: formatMessage(threadID, delta.replied_to_message.message),
231
- },
232
- );
233
- } else {
234
- return formatMessage(threadID, delta);
235
- }
188
+ if (delta.replied_to_message) {
189
+ return Object.assign({
190
+ type: "message_reply"
191
+ }, formatMessage(threadID, delta), {
192
+ messageReply: formatMessage(threadID, delta.replied_to_message.message)
193
+ });
194
+ }
195
+ else {
196
+ return formatMessage(threadID, delta);
197
+ }
236
198
  }
237
199
 
200
+
238
201
  module.exports = function (defaultFuncs, api, ctx) {
239
- return function getMessage(threadID, messageID, callback) {
240
- let resolveFunc = function () {};
241
- let rejectFunc = function () {};
242
- const returnPromise = new Promise(function (resolve, reject) {
243
- resolveFunc = resolve;
244
- rejectFunc = reject;
245
- });
202
+ return function getMessage(threadID, messageID, callback) {
203
+ let resolveFunc = function () { };
204
+ let rejectFunc = function () { };
205
+ const returnPromise = new Promise(function (resolve, reject) {
206
+ resolveFunc = resolve;
207
+ rejectFunc = reject;
208
+ });
246
209
 
247
- if (!callback) {
248
- callback = function (err, info) {
249
- if (err) return rejectFunc(err);
250
- resolveFunc(info);
251
- };
252
- }
210
+ if (!callback) {
211
+ callback = function (err, info) {
212
+ if (err)
213
+ return rejectFunc(err);
214
+ resolveFunc(info);
215
+ };
216
+ }
253
217
 
254
- if (!threadID || !messageID) {
255
- return callback({ error: "getMessage: need threadID and messageID" });
256
- }
218
+ if (!threadID || !messageID) {
219
+ return callback({ error: "getMessage: need threadID and messageID" });
220
+ }
257
221
 
258
- const form = {
259
- av: ctx.globalOptions.pageID,
260
- queries: JSON.stringify({
261
- o0: {
262
- //This doc_id is valid as of ? (prob January 18, 2020)
263
- doc_id: "1768656253222505",
264
- query_params: {
265
- thread_and_message_id: {
266
- thread_id: threadID,
267
- message_id: messageID,
268
- },
269
- },
270
- },
271
- }),
272
- };
222
+ const form = {
223
+ "av": ctx.globalOptions.pageID,
224
+ "queries": JSON.stringify({
225
+ "o0": {
226
+ //This doc_id is valid as of ? (prob January 18, 2020)
227
+ "doc_id": "1768656253222505",
228
+ "query_params": {
229
+ "thread_and_message_id": {
230
+ "thread_id": threadID,
231
+ "message_id": messageID
232
+ }
233
+ }
234
+ }
235
+ })
236
+ };
273
237
 
274
- defaultFuncs
275
- .post("https://www.facebook.com/api/graphqlbatch/", ctx.jar, form)
276
- .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
277
- .then((resData) => {
278
- if (resData[resData.length - 1].error_results > 0) {
279
- throw resData[0].o0.errors;
280
- }
238
+ defaultFuncs
239
+ .post("https://www.facebook.com/api/graphqlbatch/", ctx.jar, form)
240
+ .then(utils.parseAndCheckLogin(ctx, defaultFuncs))
241
+ .then((resData) => {
242
+ if (resData[resData.length - 1].error_results > 0) {
243
+ throw resData[0].o0.errors;
244
+ }
281
245
 
282
- if (resData[resData.length - 1].successful_results === 0) {
283
- throw {
284
- error: "getMessage: there was no successful_results",
285
- res: resData,
286
- };
287
- }
246
+ if (resData[resData.length - 1].successful_results === 0) {
247
+ throw { error: "getMessage: there was no successful_results", res: resData };
248
+ }
288
249
 
289
- const fetchData = resData[0].o0.data.message;
290
- if (fetchData) {
291
- callback(null, parseDelta(threadID, fetchData));
292
- } else {
293
- throw fetchData;
294
- }
295
- })
296
- .catch((err) => {
297
- console.error("getMessage", err);
298
- callback(err);
299
- });
250
+ const fetchData = resData[0].o0.data.message;
251
+ if (fetchData) {
252
+ callback(null, parseDelta(threadID, fetchData));
253
+ }
254
+ else {
255
+ throw fetchData;
256
+ }
257
+ })
258
+ .catch((err) => {
259
+ log.error("getMessage", err);
260
+ callback(err);
261
+ });
300
262
 
301
- return returnPromise;
302
- };
263
+ return returnPromise;
264
+ };
303
265
  };
304
266
 
305
267
  const colors = [
306
- {
307
- theme_color: "FF000000",
308
- theme_id: "788274591712841",
309
- theme_emoji: "🖤",
310
- gradient: '["FFF0F0F0"]',
311
- should_show_icon: "",
312
- theme_name_with_subtitle: "Monochrome",
313
- },
314
- {
315
- theme_color: "FFFF5CA1",
316
- theme_id: "169463077092846",
317
- theme_emoji: null,
318
- gradient: null,
319
- should_show_icon: "1",
320
- theme_name_with_subtitle: "Hot Pink",
321
- },
322
- {
323
- theme_color: "FF2825B5",
324
- theme_id: "271607034185782",
325
- theme_emoji: null,
326
- gradient: '["FF5E007E","FF331290","FF2825B5"]',
327
- should_show_icon: "1",
328
- theme_name_with_subtitle: "Shadow",
329
- },
330
- {
331
- theme_color: "FFD9A900",
332
- theme_id: "2533652183614000",
333
- theme_emoji: null,
334
- gradient: '["FF550029","FFAA3232","FFD9A900"]',
335
- should_show_icon: "1",
336
- theme_name_with_subtitle: "Maple",
337
- },
338
- {
339
- theme_color: "FFFB45DE",
340
- theme_id: "2873642949430623",
341
- theme_emoji: null,
342
- gradient: null,
343
- should_show_icon: "1",
344
- theme_name_with_subtitle: "Tulip",
345
- },
346
- {
347
- theme_color: "FF5E007E",
348
- theme_id: "193497045377796",
349
- theme_emoji: null,
350
- gradient: null,
351
- should_show_icon: "1",
352
- theme_name_with_subtitle: "Grape",
353
- },
354
- {
355
- theme_color: "FF7AA286",
356
- theme_id: "1455149831518874",
357
- theme_emoji: "🌑",
358
- gradient: '["FF25C0E1","FFCE832A"]',
359
- should_show_icon: "",
360
- theme_name_with_subtitle: "Dune",
361
- },
362
- {
363
- theme_color: "FFFAAF00",
364
- theme_id: "672058580051520",
365
- theme_emoji: null,
366
- gradient: null,
367
- should_show_icon: "1",
368
- theme_name_with_subtitle: "Honey",
369
- },
370
- {
371
- theme_color: "FF0084FF",
372
- theme_id: "196241301102133",
373
- theme_emoji: null,
374
- gradient: null,
375
- should_show_icon: "1",
376
- theme_name_with_subtitle: "Default Blue",
377
- },
378
- {
379
- theme_color: "FFFFC300",
380
- theme_id: "174636906462322",
381
- theme_emoji: null,
382
- gradient: null,
383
- should_show_icon: "1",
384
- theme_name_with_subtitle: "Yellow",
385
- },
386
- {
387
- theme_color: "FF44BEC7",
388
- theme_id: "1928399724138152",
389
- theme_emoji: null,
390
- gradient: null,
391
- should_show_icon: "1",
392
- theme_name_with_subtitle: "Teal Blue",
393
- },
394
- {
395
- theme_color: "FF7646FF",
396
- theme_id: "234137870477637",
397
- theme_emoji: null,
398
- gradient: null,
399
- should_show_icon: "1",
400
- theme_name_with_subtitle: "Bright Purple",
401
- },
402
- {
403
- theme_color: "FFF25C54",
404
- theme_id: "3022526817824329",
405
- theme_emoji: null,
406
- gradient: null,
407
- should_show_icon: "1",
408
- theme_name_with_subtitle: "Peach",
409
- },
410
- {
411
- theme_color: "FFF01D6A",
412
- theme_id: "724096885023603",
413
- theme_emoji: null,
414
- gradient: '["FF005FFF","FF9200FF","FFFF2E19"]',
415
- should_show_icon: "1",
416
- theme_name_with_subtitle: "Berry",
417
- },
418
- {
419
- theme_color: "FFFF7CA8",
420
- theme_id: "624266884847972",
421
- theme_emoji: null,
422
- gradient: '["FFFF8FB2","FFA797FF","FF00E5FF"]',
423
- should_show_icon: "1",
424
- theme_name_with_subtitle: "Candy",
425
- },
426
- {
427
- theme_color: "FF6E5B04",
428
- theme_id: "365557122117011",
429
- theme_emoji: "💛",
430
- gradient: '["FFED9F9A","FFED9F9A","FFED9F9A"]',
431
- should_show_icon: "",
432
- theme_name_with_subtitle: "Support",
433
- },
434
- {
435
- theme_color: "FF0052CD",
436
- theme_id: "230032715012014",
437
- theme_emoji: "âœŒī¸",
438
- gradient: '["FF0052CD","FF00A1E6","FF0052CD"]',
439
- should_show_icon: "",
440
- theme_name_with_subtitle: "Tie-Dye",
441
- },
442
- {
443
- theme_color: "FF601DDD",
444
- theme_id: "1060619084701625",
445
- theme_emoji: "â˜ī¸",
446
- gradient: '["FFCA34FF","FF302CFF","FFBA009C"]',
447
- should_show_icon: "",
448
- theme_name_with_subtitle: "Lo-Fi",
449
- },
450
- {
451
- theme_color: "FF0099FF",
452
- theme_id: "3273938616164733",
453
- theme_emoji: null,
454
- gradient: null,
455
- should_show_icon: "1",
456
- theme_name_with_subtitle: "Classic",
457
- },
458
- {
459
- theme_color: "FF1ADB5B",
460
- theme_id: "370940413392601",
461
- theme_emoji: null,
462
- gradient: '["FFFFD200","FF6EDF00","FF00DFBB"]',
463
- should_show_icon: "1",
464
- theme_name_with_subtitle: "Citrus",
465
- },
466
- {
467
- theme_color: "FFD696BB",
468
- theme_id: "2058653964378557",
469
- theme_emoji: null,
470
- gradient: null,
471
- should_show_icon: "1",
472
- theme_name_with_subtitle: "Lavender Purple",
473
- },
474
- {
475
- theme_color: "FFC03232",
476
- theme_id: "1059859811490132",
477
- theme_emoji: "🙃",
478
- gradient: '["FFDB4040","FFA32424"]',
479
- should_show_icon: "",
480
- theme_name_with_subtitle: "Stranger Things",
481
- },
482
- {
483
- theme_color: "FFFA3C4C",
484
- theme_id: "2129984390566328",
485
- theme_emoji: null,
486
- gradient: null,
487
- should_show_icon: "1",
488
- theme_name_with_subtitle: "Red",
489
- },
490
- {
491
- theme_color: "FF13CF13",
492
- theme_id: "2136751179887052",
493
- theme_emoji: null,
494
- gradient: null,
495
- should_show_icon: "1",
496
- theme_name_with_subtitle: "Green",
497
- },
498
- {
499
- theme_color: "FFFF7E29",
500
- theme_id: "175615189761153",
501
- theme_emoji: null,
502
- gradient: null,
503
- should_show_icon: "1",
504
- theme_name_with_subtitle: "Orange",
505
- },
506
- {
507
- theme_color: "FFE68585",
508
- theme_id: "980963458735625",
509
- theme_emoji: null,
510
- gradient: null,
511
- should_show_icon: "1",
512
- theme_name_with_subtitle: "Coral Pink",
513
- },
514
- {
515
- theme_color: "FF20CEF5",
516
- theme_id: "2442142322678320",
517
- theme_emoji: null,
518
- gradient: null,
519
- should_show_icon: "1",
520
- theme_name_with_subtitle: "Aqua Blue",
521
- },
522
- {
523
- theme_color: "FF0EDCDE",
524
- theme_id: "417639218648241",
525
- theme_emoji: null,
526
- gradient: '["FF19C9FF","FF00E6D2","FF0EE6B7"]',
527
- should_show_icon: "1",
528
- theme_name_with_subtitle: "Aqua",
529
- },
530
- {
531
- theme_color: "FFFF9C19",
532
- theme_id: "930060997172551",
533
- theme_emoji: null,
534
- gradient: '["FFFFDC2D","FFFF9616","FFFF4F00"]',
535
- should_show_icon: "1",
536
- theme_name_with_subtitle: "Mango",
537
- },
538
- {
539
- theme_color: "FFF01D6A",
540
- theme_id: "164535220883264",
541
- theme_emoji: null,
542
- gradient: '["FF005FFF","FF9200FF","FFFF2E19"]',
543
- should_show_icon: "1",
544
- theme_name_with_subtitle: "Berry",
545
- },
546
- {
547
- theme_color: "FFFF7CA8",
548
- theme_id: "205488546921017",
549
- theme_emoji: null,
550
- gradient: '["FFFF8FB2","FFA797FF","FF00E5FF"]',
551
- should_show_icon: "1",
552
- theme_name_with_subtitle: "Candy",
553
- },
554
- {
555
- theme_color: "FFFF6F07",
556
- theme_id: "1833559466821043",
557
- theme_emoji: "🌎",
558
- gradient: '["FFFF6F07"]',
559
- should_show_icon: "",
560
- theme_name_with_subtitle: "Earth",
561
- },
562
- {
563
- theme_color: "FF0B0085",
564
- theme_id: "339021464972092",
565
- theme_emoji: "🔈",
566
- gradient: '["FF2FA9E4","FF648FEB","FF9B73F2"]',
567
- should_show_icon: "",
568
- theme_name_with_subtitle: "Music",
569
- },
570
- {
571
- theme_color: "FF8A39EF",
572
- theme_id: "1652456634878319",
573
- theme_emoji: "đŸŗī¸â€đŸŒˆ",
574
- gradient:
575
- '["FFFF0018","FFFF0417","FFFF310E","FFFF5D06","FFFF7A01","FFFF8701","FFFFB001","FFD9C507","FF79C718","FF01C92D","FF01BE69","FF01B3AA","FF0BA1DF","FF3F77E6","FF724CEC","FF8A39EF","FF8A39EF"]',
576
- should_show_icon: "",
577
- theme_name_with_subtitle: "Pride",
578
- },
579
- {
580
- theme_color: "FF004D7C",
581
- theme_id: "538280997628317",
582
- theme_emoji: "🌀",
583
- gradient: '["FF931410","FF931410","FF931410"]',
584
- should_show_icon: "",
585
- theme_name_with_subtitle: "Doctor Strange",
586
- },
587
- {
588
- theme_color: "FF4F4DFF",
589
- theme_id: "3190514984517598",
590
- theme_emoji: "🌤",
591
- gradient: '["FF0080FF","FF9F1AFF"]',
592
- should_show_icon: "",
593
- theme_name_with_subtitle: "Sky",
594
- },
595
- {
596
- theme_color: "FFE84B28",
597
- theme_id: "357833546030778",
598
- theme_emoji: "đŸ¯",
599
- gradient: '["FFF69500","FFDA0050"]',
600
- should_show_icon: "1",
601
- theme_name_with_subtitle: "Lunar New Year",
602
- },
603
- {
604
- theme_color: "FFB24B77",
605
- theme_id: "627144732056021",
606
- theme_emoji: "đŸĨŗ",
607
- gradient: '["FFF1614E","FF660F84"]',
608
- should_show_icon: "",
609
- theme_name_with_subtitle: "Celebration!",
610
- },
611
- {
612
- theme_color: "FF66A9FF",
613
- theme_id: "390127158985345",
614
- theme_emoji: "đŸĨļ",
615
- gradient: '["FF8CB3FF","FF409FFF"]',
616
- should_show_icon: "",
617
- theme_name_with_subtitle: "Chill",
618
- },
619
- {
620
- theme_color: "FF5797FC",
621
- theme_id: "275041734441112",
622
- theme_emoji: "😌",
623
- gradient: '["FF4AC9E4","FF5890FF","FF8C91FF"]',
624
- should_show_icon: "",
625
- theme_name_with_subtitle: "Care",
626
- },
627
- {
628
- theme_color: "FFFF595C",
629
- theme_id: "3082966625307060",
630
- theme_emoji: "đŸ’Ģ",
631
- gradient: '["FFFF239A","FFFF8C21"]',
632
- should_show_icon: "",
633
- theme_name_with_subtitle: "Astrology",
634
- },
635
- {
636
- theme_color: "FF0171FF",
637
- theme_id: "184305226956268",
638
- theme_emoji: "â˜ī¸",
639
- gradient: '["FF0026ee","FF00b2ff"]',
640
- should_show_icon: "",
641
- theme_name_with_subtitle: "J Balvin",
642
- },
643
- {
644
- theme_color: "FFA033FF",
645
- theme_id: "621630955405500",
646
- theme_emoji: "🎉",
647
- gradient: '["FFFF7061","FFFF5280","FFA033FF","FF0099FF"]',
648
- should_show_icon: "",
649
- theme_name_with_subtitle: "Birthday",
650
- },
651
- {
652
- theme_color: "FF006528",
653
- theme_id: "539927563794799",
654
- theme_emoji: "🍄",
655
- gradient: '["FF00d52f","FF006528"]',
656
- should_show_icon: "",
657
- theme_name_with_subtitle: "Cottagecore",
658
- },
659
- {
660
- theme_color: "FF4D3EC2",
661
- theme_id: "736591620215564",
662
- theme_emoji: null,
663
- gradient: null,
664
- should_show_icon: "1",
665
- theme_name_with_subtitle: "Ocean",
666
- },
667
- {
668
- theme_color: "FF4e4bf5",
669
- theme_id: "3259963564026002",
670
- theme_emoji: null,
671
- gradient: '["FFAA00FF","FF0080FF"]',
672
- should_show_icon: "1",
673
- theme_name_with_subtitle: "Default",
674
- },
675
- {
676
- theme_color: "FF3A12FF",
677
- theme_id: "582065306070020",
678
- theme_emoji: null,
679
- gradient: '["FFFAAF00","FFFF2E2E","FF3A12FF"]',
680
- should_show_icon: "1",
681
- theme_name_with_subtitle: "Rocket",
682
- },
683
- {
684
- theme_color: "FF3A1D8A",
685
- theme_id: "273728810607574",
686
- theme_emoji: null,
687
- gradient: '["FFFB45DE","FF841DD5","FF3A1D8A"]',
688
- should_show_icon: "1",
689
- theme_name_with_subtitle: "Unicorn",
690
- },
691
- {
692
- theme_color: "FF9FD52D",
693
- theme_id: "262191918210707",
694
- theme_emoji: null,
695
- gradient: '["FF2A7FE3","FF00BF91","FF9FD52D"]',
696
- should_show_icon: "1",
697
- theme_name_with_subtitle: "Tropical",
698
- },
699
- {
700
- theme_color: "FFF7B267",
701
- theme_id: "909695489504566",
702
- theme_emoji: null,
703
- gradient: '["FFF25C54","FFF4845F","FFF7B267"]',
704
- should_show_icon: "1",
705
- theme_name_with_subtitle: "Sushi",
706
- },
707
- {
708
- theme_color: "FF1ADB5B",
709
- theme_id: "557344741607350",
710
- theme_emoji: null,
711
- gradient: '["FFFFD200","FF6EDF00","FF00DFBB"]',
712
- should_show_icon: "1",
713
- theme_name_with_subtitle: "Citrus",
714
- },
715
- {
716
- theme_color: "FF4D3EC2",
717
- theme_id: "280333826736184",
718
- theme_emoji: null,
719
- gradient: '["FFFF625B","FFC532AD","FF4D3EC2"]',
720
- should_show_icon: "1",
721
- theme_name_with_subtitle: "Lollipop",
722
- },
723
- {
724
- theme_color: "FFFF311E",
725
- theme_id: "1257453361255152",
726
- theme_emoji: null,
727
- gradient: null,
728
- should_show_icon: "1",
729
- theme_name_with_subtitle: "Rose",
730
- },
731
- {
732
- theme_color: "FFA797FF",
733
- theme_id: "571193503540759",
734
- theme_emoji: null,
735
- gradient: null,
736
- should_show_icon: "1",
737
- theme_name_with_subtitle: "Lavender",
738
- },
739
- {
740
- theme_color: "FF6EDF00",
741
- theme_id: "3151463484918004",
742
- theme_emoji: null,
743
- gradient: null,
744
- should_show_icon: "1",
745
- theme_name_with_subtitle: "Kiwi",
746
- },
747
- {
748
- theme_color: "FF9D59D2",
749
- theme_id: "737761000603635",
750
- theme_emoji: "💛",
751
- gradient: '["FFFFD600","FFFCB37B","FF9D59D2","FF282828"]',
752
- should_show_icon: "",
753
- theme_name_with_subtitle: "Non-Binary",
754
- },
755
- {
756
- theme_color: "FF57C39C",
757
- theme_id: "1288506208402340",
758
- theme_emoji: "💐",
759
- gradient: '["FF57C39C","FF57C39C","FF57C39C"]',
760
- should_show_icon: "",
761
- theme_name_with_subtitle: "Mother's Day",
762
- },
763
- {
764
- theme_color: "FFF65900",
765
- theme_id: "121771470870245",
766
- theme_emoji: "đŸ’Ĩ",
767
- gradient: '["FFFF8328","FFFF7014","FFFF5C00"]',
768
- should_show_icon: "",
769
- theme_name_with_subtitle: "APAHM",
770
- },
771
- {
772
- theme_color: "FF978E21",
773
- theme_id: "810978360551741",
774
- theme_emoji: "đŸĒē",
775
- gradient: '["FF978E21","FF978E21","FF978E21"]',
776
- should_show_icon: "",
777
- theme_name_with_subtitle: "Parenthood",
778
- },
779
- {
780
- theme_color: "FFDD8800",
781
- theme_id: "1438011086532622",
782
- theme_emoji: "✨",
783
- gradient: '["FFEDAB00","FFCD6300"]',
784
- should_show_icon: "",
785
- theme_name_with_subtitle: "Star Wars",
786
- },
787
- {
788
- theme_color: "FF7D09B9",
789
- theme_id: "101275642962533",
790
- theme_emoji: "🚀",
791
- gradient: '["FF5C22D6","FF8F1EB5","FFC31B92"]',
792
- should_show_icon: "",
793
- theme_name_with_subtitle: "Guardians of the Galaxy",
794
- },
795
- {
796
- theme_color: "FF61C500",
797
- theme_id: "158263147151440",
798
- theme_emoji: "🐝",
799
- gradient: '["FF61C500","FF61C500","FF61C500"]',
800
- should_show_icon: "",
801
- theme_name_with_subtitle: "Bloom",
802
- },
803
- {
804
- theme_color: "FF826044",
805
- theme_id: "195296273246380",
806
- theme_emoji: "🧋",
807
- gradient: '["FF886546","FFA27F57","FFC6A26E"]',
808
- should_show_icon: "",
809
- theme_name_with_subtitle: "Bubble Tea",
810
- },
811
- {
812
- theme_color: "FFB02501",
813
- theme_id: "6026716157422736",
814
- theme_emoji: "â›šī¸",
815
- gradient: '["FFAC2503","FFB02501","FFB42400"]',
816
- should_show_icon: "",
817
- theme_name_with_subtitle: "Basketball",
818
- },
819
- {
820
- theme_color: "FF574DC1",
821
- theme_id: "693996545771691",
822
- theme_emoji: "🖤",
823
- gradient: '["FF4533FF","FF574AE0","FF6C64BE"]',
824
- should_show_icon: "",
825
- theme_name_with_subtitle: "Elephants&Flowers",
826
- },
827
- {
828
- theme_color: "FFA8B8DA",
829
- theme_id: "504518465021637",
830
- theme_emoji: "đŸŗī¸â€âš§ī¸",
831
- gradient: '["FF55D0FF","FF7597D7","FFFF9FB3","FFFF9FB3"]',
832
- should_show_icon: "",
833
- theme_name_with_subtitle: "Transgender",
834
- },
835
- ];
268
+ {
269
+ theme_color: 'FF000000',
270
+ theme_id: '788274591712841',
271
+ theme_emoji: '🖤',
272
+ gradient: '["FFF0F0F0"]',
273
+ should_show_icon: '',
274
+ theme_name_with_subtitle: 'Monochrome'
275
+ },
276
+ {
277
+ theme_color: 'FFFF5CA1',
278
+ theme_id: '169463077092846',
279
+ theme_emoji: null,
280
+ gradient: null,
281
+ should_show_icon: '1',
282
+ theme_name_with_subtitle: 'Hot Pink'
283
+ },
284
+ {
285
+ theme_color: 'FF2825B5',
286
+ theme_id: '271607034185782',
287
+ theme_emoji: null,
288
+ gradient: '["FF5E007E","FF331290","FF2825B5"]',
289
+ should_show_icon: '1',
290
+ theme_name_with_subtitle: 'Shadow'
291
+ },
292
+ {
293
+ theme_color: 'FFD9A900',
294
+ theme_id: '2533652183614000',
295
+ theme_emoji: null,
296
+ gradient: '["FF550029","FFAA3232","FFD9A900"]',
297
+ should_show_icon: '1',
298
+ theme_name_with_subtitle: 'Maple'
299
+ },
300
+ {
301
+ theme_color: 'FFFB45DE',
302
+ theme_id: '2873642949430623',
303
+ theme_emoji: null,
304
+ gradient: null,
305
+ should_show_icon: '1',
306
+ theme_name_with_subtitle: 'Tulip'
307
+ },
308
+ {
309
+ theme_color: 'FF5E007E',
310
+ theme_id: '193497045377796',
311
+ theme_emoji: null,
312
+ gradient: null,
313
+ should_show_icon: '1',
314
+ theme_name_with_subtitle: 'Grape'
315
+ },
316
+ {
317
+ theme_color: 'FF7AA286',
318
+ theme_id: '1455149831518874',
319
+ theme_emoji: '🌑',
320
+ gradient: '["FF25C0E1","FFCE832A"]',
321
+ should_show_icon: '',
322
+ theme_name_with_subtitle: 'Dune'
323
+ },
324
+ {
325
+ theme_color: 'FFFAAF00',
326
+ theme_id: '672058580051520',
327
+ theme_emoji: null,
328
+ gradient: null,
329
+ should_show_icon: '1',
330
+ theme_name_with_subtitle: 'Honey'
331
+ },
332
+ {
333
+ theme_color: 'FF0084FF',
334
+ theme_id: '196241301102133',
335
+ theme_emoji: null,
336
+ gradient: null,
337
+ should_show_icon: '1',
338
+ theme_name_with_subtitle: 'Default Blue'
339
+ },
340
+ {
341
+ theme_color: 'FFFFC300',
342
+ theme_id: '174636906462322',
343
+ theme_emoji: null,
344
+ gradient: null,
345
+ should_show_icon: '1',
346
+ theme_name_with_subtitle: 'Yellow'
347
+ },
348
+ {
349
+ theme_color: 'FF44BEC7',
350
+ theme_id: '1928399724138152',
351
+ theme_emoji: null,
352
+ gradient: null,
353
+ should_show_icon: '1',
354
+ theme_name_with_subtitle: 'Teal Blue'
355
+ },
356
+ {
357
+ theme_color: 'FF7646FF',
358
+ theme_id: '234137870477637',
359
+ theme_emoji: null,
360
+ gradient: null,
361
+ should_show_icon: '1',
362
+ theme_name_with_subtitle: 'Bright Purple'
363
+ },
364
+ {
365
+ theme_color: 'FFF25C54',
366
+ theme_id: '3022526817824329',
367
+ theme_emoji: null,
368
+ gradient: null,
369
+ should_show_icon: '1',
370
+ theme_name_with_subtitle: 'Peach'
371
+ },
372
+ {
373
+ theme_color: 'FFF01D6A',
374
+ theme_id: '724096885023603',
375
+ theme_emoji: null,
376
+ gradient: '["FF005FFF","FF9200FF","FFFF2E19"]',
377
+ should_show_icon: '1',
378
+ theme_name_with_subtitle: 'Berry'
379
+ },
380
+ {
381
+ theme_color: 'FFFF7CA8',
382
+ theme_id: '624266884847972',
383
+ theme_emoji: null,
384
+ gradient: '["FFFF8FB2","FFA797FF","FF00E5FF"]',
385
+ should_show_icon: '1',
386
+ theme_name_with_subtitle: 'Candy'
387
+ },
388
+ {
389
+ theme_color: 'FF6E5B04',
390
+ theme_id: '365557122117011',
391
+ theme_emoji: '💛',
392
+ gradient: '["FFED9F9A","FFED9F9A","FFED9F9A"]',
393
+ should_show_icon: '',
394
+ theme_name_with_subtitle: 'Support'
395
+ },
396
+ {
397
+ theme_color: 'FF0052CD',
398
+ theme_id: '230032715012014',
399
+ theme_emoji: 'âœŒī¸',
400
+ gradient: '["FF0052CD","FF00A1E6","FF0052CD"]',
401
+ should_show_icon: '',
402
+ theme_name_with_subtitle: 'Tie-Dye'
403
+ },
404
+ {
405
+ theme_color: 'FF601DDD',
406
+ theme_id: '1060619084701625',
407
+ theme_emoji: 'â˜ī¸',
408
+ gradient: '["FFCA34FF","FF302CFF","FFBA009C"]',
409
+ should_show_icon: '',
410
+ theme_name_with_subtitle: 'Lo-Fi'
411
+ },
412
+ {
413
+ theme_color: 'FF0099FF',
414
+ theme_id: '3273938616164733',
415
+ theme_emoji: null,
416
+ gradient: null,
417
+ should_show_icon: '1',
418
+ theme_name_with_subtitle: 'Classic'
419
+ },
420
+ {
421
+ theme_color: 'FF1ADB5B',
422
+ theme_id: '370940413392601',
423
+ theme_emoji: null,
424
+ gradient: '["FFFFD200","FF6EDF00","FF00DFBB"]',
425
+ should_show_icon: '1',
426
+ theme_name_with_subtitle: 'Citrus'
427
+ },
428
+ {
429
+ theme_color: 'FFD696BB',
430
+ theme_id: '2058653964378557',
431
+ theme_emoji: null,
432
+ gradient: null,
433
+ should_show_icon: '1',
434
+ theme_name_with_subtitle: 'Lavender Purple'
435
+ },
436
+ {
437
+ theme_color: 'FFC03232',
438
+ theme_id: '1059859811490132',
439
+ theme_emoji: '🙃',
440
+ gradient: '["FFDB4040","FFA32424"]',
441
+ should_show_icon: '',
442
+ theme_name_with_subtitle: 'Stranger Things'
443
+ },
444
+ {
445
+ theme_color: 'FFFA3C4C',
446
+ theme_id: '2129984390566328',
447
+ theme_emoji: null,
448
+ gradient: null,
449
+ should_show_icon: '1',
450
+ theme_name_with_subtitle: 'Red'
451
+ },
452
+ {
453
+ theme_color: 'FF13CF13',
454
+ theme_id: '2136751179887052',
455
+ theme_emoji: null,
456
+ gradient: null,
457
+ should_show_icon: '1',
458
+ theme_name_with_subtitle: 'Green'
459
+ },
460
+ {
461
+ theme_color: 'FFFF7E29',
462
+ theme_id: '175615189761153',
463
+ theme_emoji: null,
464
+ gradient: null,
465
+ should_show_icon: '1',
466
+ theme_name_with_subtitle: 'Orange'
467
+ },
468
+ {
469
+ theme_color: 'FFE68585',
470
+ theme_id: '980963458735625',
471
+ theme_emoji: null,
472
+ gradient: null,
473
+ should_show_icon: '1',
474
+ theme_name_with_subtitle: 'Coral Pink'
475
+ },
476
+ {
477
+ theme_color: 'FF20CEF5',
478
+ theme_id: '2442142322678320',
479
+ theme_emoji: null,
480
+ gradient: null,
481
+ should_show_icon: '1',
482
+ theme_name_with_subtitle: 'Aqua Blue'
483
+ },
484
+ {
485
+ theme_color: 'FF0EDCDE',
486
+ theme_id: '417639218648241',
487
+ theme_emoji: null,
488
+ gradient: '["FF19C9FF","FF00E6D2","FF0EE6B7"]',
489
+ should_show_icon: '1',
490
+ theme_name_with_subtitle: 'Aqua'
491
+ },
492
+ {
493
+ theme_color: 'FFFF9C19',
494
+ theme_id: '930060997172551',
495
+ theme_emoji: null,
496
+ gradient: '["FFFFDC2D","FFFF9616","FFFF4F00"]',
497
+ should_show_icon: '1',
498
+ theme_name_with_subtitle: 'Mango'
499
+ },
500
+ {
501
+ theme_color: 'FFF01D6A',
502
+ theme_id: '164535220883264',
503
+ theme_emoji: null,
504
+ gradient: '["FF005FFF","FF9200FF","FFFF2E19"]',
505
+ should_show_icon: '1',
506
+ theme_name_with_subtitle: 'Berry'
507
+ },
508
+ {
509
+ theme_color: 'FFFF7CA8',
510
+ theme_id: '205488546921017',
511
+ theme_emoji: null,
512
+ gradient: '["FFFF8FB2","FFA797FF","FF00E5FF"]',
513
+ should_show_icon: '1',
514
+ theme_name_with_subtitle: 'Candy'
515
+ },
516
+ {
517
+ theme_color: 'FFFF6F07',
518
+ theme_id: '1833559466821043',
519
+ theme_emoji: '🌎',
520
+ gradient: '["FFFF6F07"]',
521
+ should_show_icon: '',
522
+ theme_name_with_subtitle: 'Earth'
523
+ },
524
+ {
525
+ theme_color: 'FF0B0085',
526
+ theme_id: '339021464972092',
527
+ theme_emoji: '🔈',
528
+ gradient: '["FF2FA9E4","FF648FEB","FF9B73F2"]',
529
+ should_show_icon: '',
530
+ theme_name_with_subtitle: 'Music'
531
+ },
532
+ {
533
+ theme_color: 'FF8A39EF',
534
+ theme_id: '1652456634878319',
535
+ theme_emoji: 'đŸŗī¸â€đŸŒˆ',
536
+ gradient: '["FFFF0018","FFFF0417","FFFF310E","FFFF5D06","FFFF7A01","FFFF8701","FFFFB001","FFD9C507","FF79C718","FF01C92D","FF01BE69","FF01B3AA","FF0BA1DF","FF3F77E6","FF724CEC","FF8A39EF","FF8A39EF"]',
537
+ should_show_icon: '',
538
+ theme_name_with_subtitle: 'Pride'
539
+ },
540
+ {
541
+ theme_color: 'FF004D7C',
542
+ theme_id: '538280997628317',
543
+ theme_emoji: '🌀',
544
+ gradient: '["FF931410","FF931410","FF931410"]',
545
+ should_show_icon: '',
546
+ theme_name_with_subtitle: 'Doctor Strange'
547
+ },
548
+ {
549
+ theme_color: 'FF4F4DFF',
550
+ theme_id: '3190514984517598',
551
+ theme_emoji: '🌤',
552
+ gradient: '["FF0080FF","FF9F1AFF"]',
553
+ should_show_icon: '',
554
+ theme_name_with_subtitle: 'Sky'
555
+ },
556
+ {
557
+ theme_color: 'FFE84B28',
558
+ theme_id: '357833546030778',
559
+ theme_emoji: 'đŸ¯',
560
+ gradient: '["FFF69500","FFDA0050"]',
561
+ should_show_icon: '1',
562
+ theme_name_with_subtitle: 'Lunar New Year'
563
+ },
564
+ {
565
+ theme_color: 'FFB24B77',
566
+ theme_id: '627144732056021',
567
+ theme_emoji: 'đŸĨŗ',
568
+ gradient: '["FFF1614E","FF660F84"]',
569
+ should_show_icon: '',
570
+ theme_name_with_subtitle: 'Celebration!'
571
+ },
572
+ {
573
+ theme_color: 'FF66A9FF',
574
+ theme_id: '390127158985345',
575
+ theme_emoji: 'đŸĨļ',
576
+ gradient: '["FF8CB3FF","FF409FFF"]',
577
+ should_show_icon: '',
578
+ theme_name_with_subtitle: 'Chill'
579
+ },
580
+ {
581
+ theme_color: 'FF5797FC',
582
+ theme_id: '275041734441112',
583
+ theme_emoji: '😌',
584
+ gradient: '["FF4AC9E4","FF5890FF","FF8C91FF"]',
585
+ should_show_icon: '',
586
+ theme_name_with_subtitle: 'Care'
587
+ },
588
+ {
589
+ theme_color: 'FFFF595C',
590
+ theme_id: '3082966625307060',
591
+ theme_emoji: 'đŸ’Ģ',
592
+ gradient: '["FFFF239A","FFFF8C21"]',
593
+ should_show_icon: '',
594
+ theme_name_with_subtitle: 'Astrology'
595
+ },
596
+ {
597
+ theme_color: 'FF0171FF',
598
+ theme_id: '184305226956268',
599
+ theme_emoji: 'â˜ī¸',
600
+ gradient: '["FF0026ee","FF00b2ff"]',
601
+ should_show_icon: '',
602
+ theme_name_with_subtitle: 'J Balvin'
603
+ },
604
+ {
605
+ theme_color: 'FFA033FF',
606
+ theme_id: '621630955405500',
607
+ theme_emoji: '🎉',
608
+ gradient: '["FFFF7061","FFFF5280","FFA033FF","FF0099FF"]',
609
+ should_show_icon: '',
610
+ theme_name_with_subtitle: 'Birthday'
611
+ },
612
+ {
613
+ theme_color: 'FF006528',
614
+ theme_id: '539927563794799',
615
+ theme_emoji: '🍄',
616
+ gradient: '["FF00d52f","FF006528"]',
617
+ should_show_icon: '',
618
+ theme_name_with_subtitle: 'Cottagecore'
619
+ },
620
+ {
621
+ theme_color: 'FF4D3EC2',
622
+ theme_id: '736591620215564',
623
+ theme_emoji: null,
624
+ gradient: null,
625
+ should_show_icon: '1',
626
+ theme_name_with_subtitle: 'Ocean'
627
+ },
628
+ {
629
+ theme_color: 'FF4e4bf5',
630
+ theme_id: '3259963564026002',
631
+ theme_emoji: null,
632
+ gradient: '["FFAA00FF","FF0080FF"]',
633
+ should_show_icon: '1',
634
+ theme_name_with_subtitle: 'Default'
635
+ },
636
+ {
637
+ theme_color: 'FF3A12FF',
638
+ theme_id: '582065306070020',
639
+ theme_emoji: null,
640
+ gradient: '["FFFAAF00","FFFF2E2E","FF3A12FF"]',
641
+ should_show_icon: '1',
642
+ theme_name_with_subtitle: 'Rocket'
643
+ },
644
+ {
645
+ theme_color: 'FF3A1D8A',
646
+ theme_id: '273728810607574',
647
+ theme_emoji: null,
648
+ gradient: '["FFFB45DE","FF841DD5","FF3A1D8A"]',
649
+ should_show_icon: '1',
650
+ theme_name_with_subtitle: 'Unicorn'
651
+ },
652
+ {
653
+ theme_color: 'FF9FD52D',
654
+ theme_id: '262191918210707',
655
+ theme_emoji: null,
656
+ gradient: '["FF2A7FE3","FF00BF91","FF9FD52D"]',
657
+ should_show_icon: '1',
658
+ theme_name_with_subtitle: 'Tropical'
659
+ },
660
+ {
661
+ theme_color: 'FFF7B267',
662
+ theme_id: '909695489504566',
663
+ theme_emoji: null,
664
+ gradient: '["FFF25C54","FFF4845F","FFF7B267"]',
665
+ should_show_icon: '1',
666
+ theme_name_with_subtitle: 'Sushi'
667
+ },
668
+ {
669
+ theme_color: 'FF1ADB5B',
670
+ theme_id: '557344741607350',
671
+ theme_emoji: null,
672
+ gradient: '["FFFFD200","FF6EDF00","FF00DFBB"]',
673
+ should_show_icon: '1',
674
+ theme_name_with_subtitle: 'Citrus'
675
+ },
676
+ {
677
+ theme_color: 'FF4D3EC2',
678
+ theme_id: '280333826736184',
679
+ theme_emoji: null,
680
+ gradient: '["FFFF625B","FFC532AD","FF4D3EC2"]',
681
+ should_show_icon: '1',
682
+ theme_name_with_subtitle: 'Lollipop'
683
+ },
684
+ {
685
+ theme_color: 'FFFF311E',
686
+ theme_id: '1257453361255152',
687
+ theme_emoji: null,
688
+ gradient: null,
689
+ should_show_icon: '1',
690
+ theme_name_with_subtitle: 'Rose'
691
+ },
692
+ {
693
+ theme_color: 'FFA797FF',
694
+ theme_id: '571193503540759',
695
+ theme_emoji: null,
696
+ gradient: null,
697
+ should_show_icon: '1',
698
+ theme_name_with_subtitle: 'Lavender'
699
+ },
700
+ {
701
+ theme_color: 'FF6EDF00',
702
+ theme_id: '3151463484918004',
703
+ theme_emoji: null,
704
+ gradient: null,
705
+ should_show_icon: '1',
706
+ theme_name_with_subtitle: 'Kiwi'
707
+ },
708
+ {
709
+ theme_color: 'FF9D59D2',
710
+ theme_id: '737761000603635',
711
+ theme_emoji: '💛',
712
+ gradient: '["FFFFD600","FFFCB37B","FF9D59D2","FF282828"]',
713
+ should_show_icon: '',
714
+ theme_name_with_subtitle: 'Non-Binary'
715
+ },
716
+ {
717
+ theme_color: 'FF57C39C',
718
+ theme_id: '1288506208402340',
719
+ theme_emoji: '💐',
720
+ gradient: '["FF57C39C","FF57C39C","FF57C39C"]',
721
+ should_show_icon: '',
722
+ theme_name_with_subtitle: 'Mother\'s Day'
723
+ },
724
+ {
725
+ theme_color: 'FFF65900',
726
+ theme_id: '121771470870245',
727
+ theme_emoji: 'đŸ’Ĩ',
728
+ gradient: '["FFFF8328","FFFF7014","FFFF5C00"]',
729
+ should_show_icon: '',
730
+ theme_name_with_subtitle: 'APAHM'
731
+ },
732
+ {
733
+ theme_color: 'FF978E21',
734
+ theme_id: '810978360551741',
735
+ theme_emoji: 'đŸĒē',
736
+ gradient: '["FF978E21","FF978E21","FF978E21"]',
737
+ should_show_icon: '',
738
+ theme_name_with_subtitle: 'Parenthood'
739
+ },
740
+ {
741
+ theme_color: 'FFDD8800',
742
+ theme_id: '1438011086532622',
743
+ theme_emoji: '✨',
744
+ gradient: '["FFEDAB00","FFCD6300"]',
745
+ should_show_icon: '',
746
+ theme_name_with_subtitle: 'Star Wars'
747
+ },
748
+ {
749
+ theme_color: 'FF7D09B9',
750
+ theme_id: '101275642962533',
751
+ theme_emoji: '🚀',
752
+ gradient: '["FF5C22D6","FF8F1EB5","FFC31B92"]',
753
+ should_show_icon: '',
754
+ theme_name_with_subtitle: 'Guardians of the Galaxy'
755
+ },
756
+ {
757
+ theme_color: 'FF61C500',
758
+ theme_id: '158263147151440',
759
+ theme_emoji: '🐝',
760
+ gradient: '["FF61C500","FF61C500","FF61C500"]',
761
+ should_show_icon: '',
762
+ theme_name_with_subtitle: 'Bloom'
763
+ },
764
+ {
765
+ theme_color: 'FF826044',
766
+ theme_id: '195296273246380',
767
+ theme_emoji: '🧋',
768
+ gradient: '["FF886546","FFA27F57","FFC6A26E"]',
769
+ should_show_icon: '',
770
+ theme_name_with_subtitle: 'Bubble Tea'
771
+ },
772
+ {
773
+ theme_color: 'FFB02501',
774
+ theme_id: '6026716157422736',
775
+ theme_emoji: 'â›šī¸',
776
+ gradient: '["FFAC2503","FFB02501","FFB42400"]',
777
+ should_show_icon: '',
778
+ theme_name_with_subtitle: 'Basketball'
779
+ },
780
+ {
781
+ theme_color: 'FF574DC1',
782
+ theme_id: '693996545771691',
783
+ theme_emoji: '🖤',
784
+ gradient: '["FF4533FF","FF574AE0","FF6C64BE"]',
785
+ should_show_icon: '',
786
+ theme_name_with_subtitle: 'Elephants&Flowers'
787
+ },
788
+ {
789
+ theme_color: 'FFA8B8DA',
790
+ theme_id: '504518465021637',
791
+ theme_emoji: 'đŸŗī¸â€âš§ī¸',
792
+ gradient: '["FF55D0FF","FF7597D7","FFFF9FB3","FFFF9FB3"]',
793
+ should_show_icon: '',
794
+ theme_name_with_subtitle: 'Transgender'
795
+ }
796
+ ];