// themes.js export const lightTheme = { backgroundColor: 'white', textColor: 'black', // color: 'black', buttonColor: '#8a2be2', }; export const darkTheme = { backgroundColor: 'black', textColor: 'white', // color: 'white', buttonColor: '#8a2be2', };