GT2/Ejectable/constants/Colors.ts

20 lines
387 B
TypeScript
Raw Permalink Normal View History

2021-08-16 07:50:50 +00:00
const tintColorLight = '#2f95dc';
const tintColorDark = '#fff';
export default {
light: {
text: '#000',
background: 'lime',
tint: tintColorLight,
tabIconDefault: '#ccc',
tabIconSelected: tintColorLight,
},
dark: {
text: '#fff',
background: 'forestgreen',
tint: tintColorDark,
tabIconDefault: '#ccc',
tabIconSelected: tintColorDark,
},
};