Darken splash (#2892)

* Darken splash

* We must go darker
zio/stable
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
1 changed files with 6 additions and 1 deletions

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