29 lines
523 B
TypeScript
29 lines
523 B
TypeScript
export const ETA_REGEX = /\beta\b/i;
|
|
export const ETA_MESSAGES = [
|
|
'Sometime',
|
|
'Some day',
|
|
'Not far',
|
|
'The future',
|
|
'Never',
|
|
'Perhaps tomorrow?',
|
|
'There are no ETAs',
|
|
'No',
|
|
'Nah',
|
|
'Yes',
|
|
'Yas',
|
|
'Next month',
|
|
'Next year',
|
|
'Next week',
|
|
'In Prism Launcher 2.0.0',
|
|
];
|
|
|
|
export const COLORS = {
|
|
red: 0xef4444,
|
|
green: 0x22c55e,
|
|
blue: 0x60a5fa,
|
|
yellow: 0xfde047,
|
|
orange: 0xfb923c,
|
|
} as { [key: string]: number };
|
|
|
|
/* CHANGEME */
|
|
export const ALLOWED_ROLES = ['Alert', 'Events', 'Progress'];
|