cms.theme.extendConfig

Triggered in Cms\Classes\Theme\HasConfiguration.

Extend basic theme configuration supplied by the theme by returning an array.

Note if planning on extending form fields, use the [cms.theme.extendFormConfig](/docs/api/cms/theme/extendformconfig) event instead.

Example usage:

Event::listen('cms.theme.extendConfig', function ($themeCode, &$config) {
     $config['name'] = 'October Theme';
     $config['description'] = 'Another great theme from October CMS';
});