init
This commit is contained in:
commit
d761a10bf7
102 changed files with 4761 additions and 0 deletions
25
lib/discord-statuses.ts
Normal file
25
lib/discord-statuses.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
export const discordStatuses: DiscordStatus[] = [
|
||||
{
|
||||
id: 'online',
|
||||
color: '#27A55B',
|
||||
text: 'online',
|
||||
},
|
||||
{
|
||||
id: 'away',
|
||||
color: '#faa61a',
|
||||
text: 'away',
|
||||
},
|
||||
{
|
||||
id: 'dnd',
|
||||
color: '#f04747',
|
||||
text: 'do not disturb',
|
||||
},
|
||||
{
|
||||
id: 'offline',
|
||||
color: 'gray',
|
||||
text: 'offline',
|
||||
},
|
||||
];
|
||||
|
||||
export default discordStatuses;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue