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;