Compare commits

...

2 Commits

Author SHA1 Message Date
Eric Bailey d42a4becd6 We must go darker 2024-02-16 12:04:55 -06:00
Eric Bailey e26ce958f2 Darken splash 2024-02-16 11:51:47 -06:00
+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',
},
]}
/>
)}