2016-03-29 14:26:13 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2018-12-23 11:26:39 -05:00
|
|
|
* Default system settings.
|
|
|
|
*
|
|
|
|
* Changes to these config files are not supported by BookStack and may break upon updates.
|
|
|
|
* Configuration should be altered via the `.env` file or environment variables.
|
|
|
|
* Do not edit this file unless you're happy to maintain any changes yourself.
|
2016-03-29 14:26:13 -04:00
|
|
|
*/
|
2018-12-23 11:26:39 -05:00
|
|
|
|
2016-03-29 14:26:13 -04:00
|
|
|
return [
|
|
|
|
|
2018-12-23 11:26:39 -05:00
|
|
|
'app-name' => 'BookStack',
|
|
|
|
'app-logo' => '',
|
|
|
|
'app-name-header' => true,
|
|
|
|
'app-editor' => 'wysiwyg',
|
2019-08-25 11:19:56 -04:00
|
|
|
'app-color' => '#206ea7',
|
|
|
|
'app-color-light' => 'rgba(32,110,167,0.15)',
|
2019-10-17 14:46:18 -04:00
|
|
|
'bookshelf-color' => '#a94747',
|
|
|
|
'book-color' => '#077b70',
|
|
|
|
'chapter-color' => '#af4d0d',
|
|
|
|
'page-color' => '#206ea7',
|
|
|
|
'page-draft-color' => '#7e50b1',
|
2018-12-23 11:26:39 -05:00
|
|
|
'app-custom-head' => false,
|
2016-10-30 07:33:56 -04:00
|
|
|
'registration-enabled' => false,
|
2016-03-29 14:26:13 -04:00
|
|
|
|
2019-09-15 13:29:51 -04:00
|
|
|
];
|