Revert splash screen changes

This partially reverts commit 0ac5b07bfd.
This commit is contained in:
Samuel Newman
2026-01-29 18:53:24 +02:00
parent 31553f0d40
commit 7fe71006e2
7 changed files with 165 additions and 23 deletions
+16 -14
View File
@@ -310,24 +310,26 @@ module.exports = function (_config) {
[
'expo-splash-screen',
{
enableFullScreenImage_legacy: true, // iOS only
backgroundColor: '#EEF5FF', // based on illustration
image: './assets/splash/splash-mobile.png',
resizeMode: 'cover',
dark: {
enableFullScreenImage_legacy: true, // iOS only
backgroundColor: '#446DA9', // based on illustration
image: './assets/splash/splash-mobile-dark.png',
ios: {
enableFullScreenImage_legacy: true,
backgroundColor: '#ffffff',
image: './assets/splash.png',
resizeMode: 'cover',
dark: {
enableFullScreenImage_legacy: true,
backgroundColor: '#001429',
image: './assets/splash-dark.png',
resizeMode: 'cover',
},
},
android: {
backgroundColor: '#A8CCFF', // primary_200
image: './assets/splash/android-splash-logo-white.png',
imageWidth: 105,
backgroundColor: '#0c7cff',
image: './assets/splash-android-icon.png',
imageWidth: 150,
dark: {
backgroundColor: '#00398A', // primary_800
image: './assets/splash/android-splash-logo-white.png',
imageWidth: 105,
backgroundColor: '#0c2a49',
image: './assets/splash-android-icon-dark.png',
imageWidth: 150,
},
},
},