mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-13 15:55:08 +00:00
37 lines
935 B
TypeScript
37 lines
935 B
TypeScript
![]() |
// ** MUI Imports
|
||
|
import { PaletteMode } from '@mui/material'
|
||
|
|
||
|
// ** Types
|
||
|
import { ContentWidth } from '../core/layouts/types'
|
||
|
|
||
|
type ThemeConfig = {
|
||
|
mode: PaletteMode
|
||
|
templateName: string
|
||
|
routingLoader: boolean
|
||
|
disableRipple: boolean
|
||
|
navigationSize: number
|
||
|
menuTextTruncate: boolean
|
||
|
contentWidth: ContentWidth
|
||
|
responsiveFontSizes: boolean
|
||
|
}
|
||
|
|
||
|
const themeConfig: ThemeConfig = {
|
||
|
// ** Layout Configs
|
||
|
templateName: 'Request.Box' /* App Name */,
|
||
|
mode: 'light' /* light | dark */,
|
||
|
contentWidth: 'boxed' /* full | boxed */,
|
||
|
|
||
|
// ** Routing Configs
|
||
|
routingLoader: true /* true | false */,
|
||
|
|
||
|
// ** Navigation (Menu) Configs
|
||
|
menuTextTruncate: true /* true | false */,
|
||
|
navigationSize: 260 /* Number in PX(Pixels) /*! Note: This is for Vertical navigation menu only */,
|
||
|
|
||
|
// ** Other Configs
|
||
|
responsiveFontSizes: true /* true | false */,
|
||
|
disableRipple: false /* true | false */
|
||
|
}
|
||
|
|
||
|
export default themeConfig
|