Files
revenue-fe/src/config/settings.config.ts
2025-02-01 16:44:51 +07:00

21 lines
644 B
TypeScript

import { type TKeenIconsStyle } from '../components/keenicons/types';
export type TSettingsThemeMode = 'light' | 'dark' | 'system';
export type TSettingsContainer = 'default' | 'fluid' | 'fixed';
export interface ISettings {
themeMode: TSettingsThemeMode;
container: TSettingsContainer;
keeniconsStyle: TKeenIconsStyle;
}
// Default settings for the application
const defaultSettings: ISettings = {
themeMode: 'light', // Default to light mode for the application
keeniconsStyle: 'filled', // Default to using filled KeenIcons style
container: 'fixed' // Default container layout is set to fixed
};
export { defaultSettings };