diff --git a/native/navigation/tab-navigator.react.js b/native/navigation/tab-navigator.react.js --- a/native/navigation/tab-navigator.react.js +++ b/native/navigation/tab-navigator.react.js @@ -91,14 +91,14 @@ () => ({ headerShown: false, tabBarHideOnKeyboard: false, - tabBarActiveTintColor: '#AE94DB', + tabBarActiveTintColor: colors.tabBarActiveTintColor, tabBarStyle: { backgroundColor: colors.tabBarBackground, borderTopWidth: 1, }, lazy: false, }), - [colors.tabBarBackground], + [colors.tabBarActiveTintColor, colors.tabBarBackground], ); return ( diff --git a/native/themes/colors.js b/native/themes/colors.js --- a/native/themes/colors.js +++ b/native/themes/colors.js @@ -15,7 +15,7 @@ blockQuoteBorder: '#C0C0C0', codeBackground: '#DCDCDC', disabledButton: '#D3D3D3', - disconnectedBarBackground: '#FFFFFF', + disconnectedBarBackground: '#F5F5F5', editButton: '#A4A4A2', floatingButtonBackground: '#999999', floatingButtonLabel: '#EEEEEE', @@ -34,13 +34,13 @@ listForegroundQuaternaryLabel: '#AAAAAA', listForegroundSecondaryLabel: '#333333', listForegroundTertiaryLabel: '#666666', - listInputBackground: '#DDDDDD', + listInputBackground: '#F5F5F5', listInputBar: '#E2E2E2', listInputBorder: '#AAAAAAAA', - listInputButton: '#888888', + listInputButton: '#8E8D92', listIosHighlightUnderlay: '#DDDDDDDD', - listSearchBackground: '#E2E2E2', - listSearchIcon: '#AAAAAA', + listSearchBackground: '#F5F5F5', + listSearchIcon: '#8E8D92', listSeparator: '#EEEEEE', listSeparatorLabel: '#555555', markdownLink: '#000000', @@ -62,8 +62,8 @@ modalSubtext: '#CCCCCC', modalSubtextLabel: '#555555', navigationCard: '#FFFFFF', - navigationChevron: '#A4A4A2', - panelBackground: '#E9E9EF', + navigationChevron: '#BAB9BE', + panelBackground: '#F5F5F5', panelBackgroundLabel: '#888888', panelForeground: 'white', panelForegroundBorder: '#CCCCCC', @@ -74,9 +74,10 @@ panelSecondaryForeground: '#F5F5F5', panelSecondaryForegroundBorder: '#D1D1D6', redButton: '#BB8888', - redText: '#AA0000', - tabBarAccent: '#AE94DB', + redText: '#FF4444', + tabBarAccent: '#7E57C2', tabBarBackground: '#F5F5F5', + tabBarActiveTintColor: '#7E57C2', vibrantGreenButton: '#00C853', vibrantRedButton: '#F53100', }); @@ -149,6 +150,7 @@ redText: '#FF4444', tabBarAccent: '#AE94DB', tabBarBackground: '#0A0A0A', + tabBarActiveTintColor: '#AE94DB', vibrantGreenButton: '#00C853', vibrantRedButton: '#F53100', });