diff --git a/constants/colors.js b/constants/colors.js index d6f648b..c3c709e 100644 --- a/constants/colors.js +++ b/constants/colors.js @@ -2,6 +2,7 @@ const Colors = { primary500: "#282A35", primary400: "#373A49", accent500: "#A587DD", + accent300: "#d2c3ee", }; export default Colors; diff --git a/navigation/Navigator.js b/navigation/Navigator.js index b3dfdf0..6cb2344 100644 --- a/navigation/Navigator.js +++ b/navigation/Navigator.js @@ -25,15 +25,6 @@ function Navigator() { tabBarActiveBackgroundColor: Colors.primary400, }} > - ( - - ), - }} - /> + ( + + ), + tabBarItemStyle: styles.homeTab, + tabBarActiveTintColor: Colors.accent500, + tabBarActiveBackgroundColor: Colors.primary400, + }} + /> + ( + + ), + }} + /> ); @@ -70,6 +82,13 @@ const styles = StyleSheet.create({ TabBar: { backgroundColor: Colors.primary500, }, + homeTab: { + marginTop: 2, + borderWidth: 1, + borderColor: Colors.accent300, + borderRadius: 50, + padding: 5, + }, }); export default Navigator;