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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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',
},
]}
/>
)}