]> BookStack Code Mirror - bookstack/blob - app/Config/setting-defaults.php
Fixed occurances of altered titles in search results
[bookstack] / app / Config / setting-defaults.php
1 <?php
2
3 /**
4  * Default system settings.
5  *
6  * Changes to these config files are not supported by BookStack and may break upon updates.
7  * Configuration should be altered via the `.env` file or environment variables.
8  * Do not edit this file unless you're happy to maintain any changes yourself.
9  */
10
11 return [
12
13     'app-name'             => 'BookStack',
14     'app-logo'             => '',
15     'app-name-header'      => true,
16     'app-editor'           => 'wysiwyg',
17     'app-color'            => '#206ea7',
18     'app-color-light'      => 'rgba(32,110,167,0.15)',
19     'bookshelf-color'      => '#a94747',
20     'book-color'           => '#077b70',
21     'chapter-color'        => '#af4d0d',
22     'page-color'           => '#206ea7',
23     'page-draft-color'     => '#7e50b1',
24     'app-custom-head'      => false,
25     'registration-enabled' => false,
26
27     // User-level default settings
28     'user' => [
29         'dark-mode-enabled'     => env('APP_DEFAULT_DARK_MODE', false),
30         'bookshelves_view_type' => env('APP_VIEWS_BOOKSHELVES', 'grid'),
31         'bookshelf_view_type'   => env('APP_VIEWS_BOOKSHELF', 'grid'),
32         'books_view_type'       => env('APP_VIEWS_BOOKS', 'grid'),
33     ],
34
35 ];
Morty Proxy This is a proxified and sanitized view of the page, visit original site.