phone_mouse/css/themes.js
2023-08-20 02:01:35 +02:00

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',
};