You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TP_ReactNative/styles/theme.tsx

26 lines
457 B

export const lightTheme = {
backgroundColor: 'white',
textColor: 'black',
headerBackgroundColor: 'lightblue',
};
export const darkTheme = {
backgroundColor: 'black',
textColor: 'white',
headerBackgroundColor: 'darkblue',
};
const theme = {
backgroundColor: '#FFFFFF',
textColor: '#000000',
headerBackgroundColor: '#FFFFFF',
dark: false,
colors: {
primary: 'blue',
},
};
export default theme;