Basic setup of screens. No connection with backend

This commit is contained in:
Maarten 2024-07-31 16:38:56 +02:00
parent 8e0a267423
commit e49de778c3
17 changed files with 9977 additions and 237 deletions

View file

@ -3,24 +3,54 @@
* There are many other ways to style your app. For example, [Nativewind](https://www.nativewind.dev/), [Tamagui](https://tamagui.dev/), [unistyles](https://reactnativeunistyles.vercel.app), etc.
*/
const tintColorLight = '#0a7ea4';
const tintColorDark = '#fff';
const tintColorLight = '#76af2a';
const tintColorDark = '#76af2a';
export const Colors = {
light: {
// Main
text: '#11181C',
background: '#fff',
tint: tintColorLight,
// Icons
icon: '#687076',
tabIconDefault: '#687076',
tabIconDefault: '#11181C',
tabIconSelected: tintColorLight,
// Types
green: '#3c8840',
paper: '#0071ce',
packages: '#f36c21',
grey: '#64666a',
// Buttons
buttonBackground: '#f5f5f5',
// Border
borderColor: '#f2f2f2',
},
dark: {
// Main
text: '#ECEDEE',
background: '#151718',
tint: tintColorDark,
// Icons
icon: '#9BA1A6',
tabIconDefault: '#9BA1A6',
tabIconSelected: tintColorDark,
// Types
green: '#3c8840',
paper: '#0071ce',
packages: '#f36c21',
grey: '#64666a',
// Buttons
buttonBackground: '#f5f5f5',
// Border
borderColor: '#f2f2f2',
},
};