-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatics.js
29 lines (27 loc) · 931 Bytes
/
statics.js
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
const Emojis = {
success: '<:icons_Correct:1088819685954433054>',
error: '<:icons_Wrong:1088823066391498772>',
message: '<:icons_message:1088856642088611940>',
warning: '<:icons_warning:1089669076042928249>',
buh: '<:buh:1089669162005176451>',
reply: '<:Reply:1089992385804632094>',
clock: '<:icons_clock:1091035673882009651>',
link: '<:icons_link:1091035634522652692>',
loading: '<a:loading_bg:1091124470615392256>',
space: '<:space:1132447377656135742>',
click: '<:click:1132448695120568340>',
case: '<:case:1132462063873167430>',
rename: '<:abcrename:1132464983616274453>',
no_decoy: '<:no_decoy:1132466061640466483>',
}
const Colors = {
success: '#3DFF75',
error: '#FF493D',
awaiting: '#FFD03D',
normal: '#2b2d31',
}
const EmojiIds = {
success: '1088819685954433054',
error: '1088823066391498772',
}
module.exports = { Emojis, EmojiIds, Colors }