diff options
-rw-r--r-- | src/Splash.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Splash.tsx b/src/Splash.tsx index 80d0a66e7..d84050057 100644 --- a/src/Splash.tsx +++ b/src/Splash.tsx @@ -263,7 +263,12 @@ export function Splash(props: React.PropsWithChildren<Props>) { <View style={[ StyleSheet.absoluteFillObject, - {backgroundColor: '#fff'}, + { + backgroundColor: isDarkMode + ? // special off-spec color for dark mode + '#0F1824' + : '#fff', + }, ]} /> )} |