Calendar field and time field

This commit is contained in:
Ben Grant 2021-03-02 20:31:32 +11:00
parent edcd4dcaa0
commit 0dde47109f
32 changed files with 901 additions and 65 deletions

View file

@ -0,0 +1,20 @@
const theme = {
light: {
mode: 'light',
background: '#FFFFFF',
text: '#000000',
primary: '#F79E00',
primaryDark: '#F48600',
primaryLight: '#F4BB60',
},
dark: {
mode: 'dark',
background: '#111',
text: '#DDDDDD',
primary: '#F79E00',
primaryDark: '#F4BB60',
primaryLight: '#F48600',
},
};
export default theme;