Add theming boilerplate
This commit is contained in:
20
src/theme.ts
Normal file
20
src/theme.ts
Normal file
@ -0,0 +1,20 @@
|
||||
import { extendTheme } from '@mui/joy/styles';
|
||||
|
||||
|
||||
declare module '@mui/joy/styles' {
|
||||
// No custom tokens found, you can skip the theme augmentation.
|
||||
}
|
||||
|
||||
|
||||
const theme = extendTheme({
|
||||
"colorSchemes": {
|
||||
"light": {
|
||||
"palette": {}
|
||||
},
|
||||
"dark": {
|
||||
"palette": {}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
export default theme;
|
Reference in New Issue
Block a user