Use theme color more consistently

This commit is contained in:
Lei Nelissen
2020-07-10 15:25:32 +02:00
parent 91f4f349b9
commit f9b589cbe2
10 changed files with 32 additions and 14 deletions

View File

@@ -9,6 +9,7 @@ import Settings from './Settings';
import PlayPauseIcon from 'assets/play-pause-fill.svg';
import NotesIcon from 'assets/notes.svg';
import GearIcon from 'assets/gear.svg';
import { THEME_COLOR } from 'CONSTANTS';
const Stack = createStackNavigator();
const Tab = createBottomTabNavigator();
@@ -47,7 +48,7 @@ function Screens() {
}
})}
tabBarOptions={{
activeTintColor: '#FF3C00',
activeTintColor: THEME_COLOR,
inactiveTintColor: 'gray',
}}
>