diff options
author | Eric Bailey <git@esb.lol> | 2023-12-18 11:20:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 09:20:58 -0800 |
commit | 9ff1828437e0f3f094c57b2a756f84ca6a45b93e (patch) | |
tree | fe7dea8bba1e89bd81c22fa36eeb974af21cef0d /src/view/com/auth/SplashScreen.web.tsx | |
parent | 47ff3e8e3f84138ce207b2d2209f358e4cc1f74a (diff) | |
download | voidsky-9ff1828437e0f3f094c57b2a756f84ca6a45b93e.tar.zst |
Fix `Logotype` fill for dark mode (#2230)
* Fix fill of Logotype in dark mode * Update default Logotype fill
Diffstat (limited to 'src/view/com/auth/SplashScreen.web.tsx')
-rw-r--r-- | src/view/com/auth/SplashScreen.web.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/auth/SplashScreen.web.tsx b/src/view/com/auth/SplashScreen.web.tsx index 4e942f66e..1cc7b9146 100644 --- a/src/view/com/auth/SplashScreen.web.tsx +++ b/src/view/com/auth/SplashScreen.web.tsx @@ -63,7 +63,7 @@ export const SplashScreen = ({ <Logo width={92} fill="sky" /> <View style={{paddingTop: 40, paddingBottom: 20}}> - <Logotype width={161} /> + <Logotype width={161} fill={pal.text.color} /> </View> <View testID="signinOrCreateAccount" style={styles.btns}> |