diff options
| author | MohamedBassem <me@mbassem.com> | 2024-04-17 17:56:21 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-04-17 18:13:31 +0100 |
| commit | c46482cdaaf883971736488750513663dd023076 (patch) | |
| tree | 9e3d70fd9e7ae39f8ef21e0651049558e5c5fa5b /apps/mobile/app/sharing.tsx | |
| parent | bb44ebcb9967bde81d15e2f7858d515777681c10 (diff) | |
| download | karakeep-c46482cdaaf883971736488750513663dd023076.tar.zst | |
mobile: Add dark mode support
Diffstat (limited to 'apps/mobile/app/sharing.tsx')
| -rw-r--r-- | apps/mobile/app/sharing.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/mobile/app/sharing.tsx b/apps/mobile/app/sharing.tsx index c178d69e..bbeaeeee 100644 --- a/apps/mobile/app/sharing.tsx +++ b/apps/mobile/app/sharing.tsx @@ -66,7 +66,7 @@ function SaveBookmark({ setMode }: { setMode: (mode: Mode) => void }) { return ( <View className="flex flex-row gap-3"> - <Text className="text-4xl">Hoarding</Text> + <Text className="text-4xl text-foreground">Hoarding</Text> <ActivityIndicator /> </View> ); @@ -83,11 +83,11 @@ export default function Sharing() { break; } case "success": { - comp = <Text className="text-4xl">Hoarded!</Text>; + comp = <Text className="text-4xl text-foreground">Hoarded!</Text>; break; } case "error": { - comp = <Text className="text-4xl">Error!</Text>; + comp = <Text className="text-4xl text-foreground">Error!</Text>; break; } } |
