Darken splash (#2892)

* Darken splash

* We must go darker
This commit is contained in:
Eric Bailey
2024-02-16 12:07:57 -06:00
committed by GitHub
parent c5641ac2b7
commit 0ff61e08e9
+6 -1
View File
@@ -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',
},
]}
/>
)}