feat(config): add theme

This commit is contained in:
ItzCrazyKns
2025-10-17 14:36:04 +05:30
parent 861d50674a
commit ac7cfac784

View File

@@ -20,7 +20,27 @@ class ConfigManager {
},
};
uiConfigSections: UIConfigSections = {
general: [],
general: [
{
name: 'Theme',
key: 'theme',
type: 'select',
options: [
{
name: 'Light',
value: 'light',
},
{
name: 'Dark',
value: 'dark',
},
],
required: false,
description: 'Choose between light and dark layouts for the app.',
default: 'dark',
scope: 'client',
},
],
modelProviders: [],
search: [
{