Add Sign in with Apple sorta

This commit is contained in:
2025-03-05 12:58:18 -06:00
parent 06471f688a
commit c62926b8f2
35 changed files with 1458 additions and 620 deletions

View File

@ -1,5 +1,5 @@
const black = '#1f1e2c';
const white = '#ECEDEE'
const white = '#ECEDEE';
const darkTint = '#fff';
const lightTint = '#0a7ea4';
const darkIcon = '#9BA1A6';
@ -18,6 +18,15 @@ export const Colors = {
tabIconSelected: lightTint,
ttBlue,
accent: ttLightBlue,
card: '#ffffff',
border: '#d0d7de',
notification: '#f85149',
placeholder: '#8b949e',
inactive: '#afb8c1',
subtle: '#f6f8fa',
error: '#e5484d',
success: '#46954a',
warning: '#daaa3f',
},
dark: {
text: white,
@ -28,5 +37,14 @@ export const Colors = {
tabIconSelected: darkTint,
ttBlue,
accent: ttDarkBlue,
card: '#3a3b4a',
border: '#444c56',
notification: '#ff6a69',
placeholder: '#636e7b',
inactive: '#4d5560',
subtle: '#272934',
error: '#ff6369',
success: '#3fb950',
warning: '#d29922',
},
};