diff options
author | Eric Bailey <git@esb.lol> | 2024-02-16 12:07:57 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 12:07:57 -0600 |
commit | 0ff61e08e94c6b9024a93cd487d2b2df21cd6c65 (patch) | |
tree | c2e968a425a5f3d3c54d83bd7f482b8a11a15706 /src/Splash.tsx | |
parent | c5641ac2b7bdcfdc4627175c7125131faf7c9744 (diff) | |
download | voidsky-0ff61e08e94c6b9024a93cd487d2b2df21cd6c65.tar.zst |
Darken splash (#2892)
* Darken splash * We must go darker
Diffstat (limited to 'src/Splash.tsx')
-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', + }, ]} /> )} |