refraction/src/constants.ts
2023-05-24 11:19:32 +08:00

26 lines
445 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 };