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