49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
export const BRAND = {
|
|
name: 'Bill Tracker',
|
|
compactName: 'Bill Tracker',
|
|
tagline: 'Calm command for household money.',
|
|
repositoryUrl: 'https://dream.scheller.ltd/null/BillTracker',
|
|
assets: {
|
|
logo: '/brand/lockup.svg',
|
|
logoLight: '/brand/lockup-light.svg',
|
|
mark: '/brand/mark.svg',
|
|
favicon: '/brand/mark.svg',
|
|
appleTouchIcon: '/brand/apple-touch-icon.png',
|
|
pwa192: '/brand/pwa-192.png',
|
|
pwa512: '/brand/pwa-512.png',
|
|
socialPreview: '/brand/social-preview.svg',
|
|
legacyLogo: '/img/logo.png',
|
|
},
|
|
colors: {
|
|
ink: '#101417',
|
|
paper: '#f8faf9',
|
|
trust: '#40c878',
|
|
teal: '#23b6a8',
|
|
amber: '#d99a24',
|
|
rose: '#df4661',
|
|
},
|
|
} as const;
|
|
|
|
export type BrandGlyphName =
|
|
| 'tracker'
|
|
| 'bills'
|
|
| 'calendar'
|
|
| 'analytics'
|
|
| 'data'
|
|
| 'banking'
|
|
| 'snowball'
|
|
| 'security';
|
|
|
|
export const BRAND_GLYPHS: Record<BrandGlyphName, { label: string }> = {
|
|
tracker: { label: 'Tracker' },
|
|
bills: { label: 'Bills' },
|
|
calendar: { label: 'Calendar' },
|
|
analytics: { label: 'Analytics' },
|
|
data: { label: 'Data' },
|
|
banking: { label: 'Banking' },
|
|
snowball: { label: 'Snowball' },
|
|
security: { label: 'Security' },
|
|
};
|
|
|
|
export const ADMIN_GLYPH = { label: 'Admin' } as const;
|