🛠️ Project ConfigurationConfiguration option for whole Template
Able Pro has a single source of truth for default configuration which lets users manage it effectively. It also makes it scalable for new configurations. you can set configs like font, border, theme layout, locale, etc. All those can be configured at ..src/config.js
en
- English
fr
- français
ro
- Română
zh
- 中国人
set layout from right to left.
different preset for theme.
JavaScript TypeScript
Copy
export const drawerWidth = 260 ;
export const twitterColor = '#1DA1F2' ;
export const facebookColor = '#3b5998' ;
export const linkedInColor = '#0e76a8' ;
export let ThemeMode;
( function (ThemeMode) {
ThemeMode[ 'LIGHT' ] = 'light' ;
ThemeMode[ 'DARK' ] = 'dark' ;
ThemeMode[ 'AUTO' ] = 'auto' ;
})(ThemeMode || (ThemeMode = {}));
export let MenuOrientation;
( function (MenuOrientation) {
MenuOrientation[ 'VERTICAL' ] = 'vertical' ;
MenuOrientation[ 'HORIZONTAL' ] = 'horizontal' ;
})(MenuOrientation || (MenuOrientation = {}));
export let ThemeDirection;
( function (ThemeDirection) {
ThemeDirection[ 'LTR' ] = 'ltr' ;
ThemeDirection[ 'RTL' ] = 'rtl' ;
})(ThemeDirection || (ThemeDirection = {}));
...
// ==============================|| THEME CONFIG ||============================== //
const config = {
fontFamily : `Inter var` ,
i18n : 'en' ,
menuOrientation : MenuOrientation . VERTICAL ,
menuCaption : true ,
miniDrawer : false ,
container : false ,
mode : ThemeMode . LIGHT ,
presetColor : 'default' ,
themeDirection : ThemeDirection . LTR ,
themeContrast : false
};
export default config;
Copy
import { DefaultConfigProps , MenuOrientation , ThemeDirection , ThemeMode } from 'types/config' ;
export const drawerWidth = 260 ;
export const twitterColor = '#1DA1F2' ;
export const facebookColor = '#3b5998' ;
export const linkedInColor = '#0e76a8' ;
export const APP_DEFAULT_PATH = '/dashboard/default' ;
export const HORIZONTAL_MAX_ITEM = 7 ;
export const DRAWER_WIDTH = 280 ;
export const MINI_DRAWER_WIDTH = 90 ;
export const HEADER_HEIGHT = 74 ;
export enum SimpleLayoutType {
SIMPLE = 'simple' ,
LANDING = 'landing'
}
... .
// ==============================|| THEME CONFIG ||============================== //
const config : DefaultConfigProps = {
fontFamily : `Inter var` ,
i18n : 'en' ,
menuOrientation : MenuOrientation . VERTICAL ,
menuCaption : true ,
miniDrawer : false ,
container : false ,
mode : ThemeMode . LIGHT ,
presetColor : 'default' ,
themeDirection : ThemeDirection . LTR ,
themeContrast : false
};
export default config;
Last updated 3 months ago