feat: implement initial finance application structure with asset and goal management

This commit is contained in:
2025-11-19 23:00:37 +00:00
commit 60360e8eb9
28 changed files with 641 additions and 0 deletions

19
constants/Colors.ts Normal file
View File

@@ -0,0 +1,19 @@
const tintColorLight = '#2f95dc';
const tintColorDark = '#fff';
export default {
light: {
text: '#000',
background: '#fff',
tint: tintColorLight,
tabIconDefault: '#ccc',
tabIconSelected: tintColorLight,
},
dark: {
text: '#fff',
background: '#000',
tint: tintColorDark,
tabIconDefault: '#ccc',
tabIconSelected: tintColorDark,
},
};