duit/constants/theme.ts
Dita Aji Pratama 5de3a82e56 feat: add theme constants
- Add COLORS for income, expense, background, etc.
- Add FONTS for regular, small, large sizes
2026-04-18 12:20:08 +07:00

17 lines
303 B
TypeScript

export const COLORS = {
income: '#4CAF50',
expense: '#F44336',
background: '#F5F5F5',
card: '#FFFFFF',
text: '#333333',
textSecondary: '#666666',
border: '#E0E0E0',
primary: '#2196F3',
} as const;
export const FONTS = {
regular: 16,
small: 14,
large: 24,
xlarge: 32,
} as const;