xref: /expo/apps/test-suite/constants/Colors.js (revision 91d99453)
1import Statuses from './Statuses';
2
3export default {
4  [Statuses.Running]: '#ff0',
5  [Statuses.Passed]: '#0f0',
6  [Statuses.Failed]: '#f00',
7  [Statuses.Disabled]: '#888',
8  tintColor: '#4630EB', // Expo Blue
9  activeTintColor: '#4630ec',
10  inactiveTintColor: '#595959',
11};
12