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/shell | |
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/shell')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBar.tsx | 2 | ||||
-rw-r--r-- | src/view/shell/bottom-bar/BottomBarWeb.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/bottom-bar/BottomBar.tsx b/src/view/shell/bottom-bar/BottomBar.tsx index 926e08ce6..1ab3334fa 100644 --- a/src/view/shell/bottom-bar/BottomBar.tsx +++ b/src/view/shell/bottom-bar/BottomBar.tsx @@ -265,7 +265,7 @@ export function BottomBar({navigation}: BottomTabBarProps) { <View style={{flexDirection: 'row', alignItems: 'center', gap: 8}}> <Logo width={28} /> <View style={{paddingTop: 4}}> - <Logotype width={80} /> + <Logotype width={80} fill={pal.text.color} /> </View> </View> diff --git a/src/view/shell/bottom-bar/BottomBarWeb.tsx b/src/view/shell/bottom-bar/BottomBarWeb.tsx index 5ae657508..c5dc376b7 100644 --- a/src/view/shell/bottom-bar/BottomBarWeb.tsx +++ b/src/view/shell/bottom-bar/BottomBarWeb.tsx @@ -157,7 +157,7 @@ export function BottomBarWeb() { <View style={{flexDirection: 'row', alignItems: 'center', gap: 12}}> <Logo width={32} /> <View style={{paddingTop: 4}}> - <Logotype width={80} /> + <Logotype width={80} fill={pal.text.color} /> </View> </View> |