We have a sick button component now

This commit is contained in:
2024-10-08 19:40:36 -05:00
parent 3d79e24ffb
commit 8128194488
8 changed files with 83 additions and 62 deletions

View File

@ -5,19 +5,22 @@
const tintColorLight = '#0a7ea4';
const tintColorDark = '#fff';
const black = '#2e2f3d'
const white = '#ECEDEE'
export const Colors = {
light: {
text: '#11181C',
background: '#fff',
text: black,
background: white,
//background: '#fff',
tint: tintColorLight,
icon: '#687076',
tabIconDefault: '#687076',
tabIconSelected: tintColorLight,
},
dark: {
text: '#ECEDEE',
background: '#2e2f3d',
text: white,
background: black,
tint: tintColorDark,
icon: '#9BA1A6',
tabIconDefault: '#9BA1A6',