Files
luggage-list/src/constants.js
Luna bdea52b7c6
Some checks failed
Luggage List Build / release (push) Has been cancelled
Luggage List Build / build-android (push) Has been cancelled
Luggage List Build / build-web (push) Has been cancelled
refactor: split app into modular src architecture
2026-04-18 12:56:12 +02:00

21 lines
513 B
JavaScript

export const STORAGE_KEY = 'luggage-list:v2';
export const TAB_BAR_HEIGHT = 72;
export const ITEM_STATUSES = ['packed', 'unpacked', 'lost', 'left-behind', 'lent-to'];
export const ITEM_PLACEMENTS = ['suitcase', 'backpack', 'with-user', 'other'];
export const STATUS_COLORS = {
packed: '#22c55e',
unpacked: '#64748b',
lost: '#ef4444',
'left-behind': '#f59e0b',
'lent-to': '#8b5cf6',
};
export const emptyData = {
trips: [],
itemsByTrip: {},
checkupsByTrip: {},
defaultTemplateTripId: null,
};