frontend: theme colors
Parents:
a6c29bd1 file(s) changed
- frontend/constants/theme.ts +3 -1
frontend/constants/theme.ts
@@ -11,12 +11,14 @@ const black = '#121712';
11 11
12 12 export const Colors = {
13 13 light: {
14 - text: '#121712',
14 + text: black,
15 15 background: '#fff',
16 16 tint: tintColorLight,
17 17 icon: '#687076',
18 18 tabIconDefault: tintColorSecondary,
19 19 tabIconSelected: black,
20 + inputBackgroundColor: '#F0F5F2',
21 + inputBorderColor: '#F0F5F2'
20 22 },
21 23 };
22 24