]> BookStack Code Mirror - bookstack/blob - app/Config/setting-defaults.php
Merge pull request #5627 from BookStackApp/lexical_20250525
[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     'link-color'           => '#206ea7',
20     'bookshelf-color'      => '#a94747',
21     'book-color'           => '#077b70',
22     'chapter-color'        => '#af4d0d',
23     'page-color'           => '#206ea7',
24     'page-draft-color'     => '#7e50b1',
25     'app-color-dark'       => '#195785',
26     'app-color-light-dark' => 'rgba(32,110,167,0.15)',
27     'link-color-dark'      => '#429fe3',
28     'bookshelf-color-dark' => '#ff5454',
29     'book-color-dark'      => '#389f60',
30     'chapter-color-dark'   => '#ee7a2d',
31     'page-color-dark'      => '#429fe3',
32     'page-draft-color-dark' => '#a66ce8',
33     'app-custom-head'      => false,
34     'registration-enabled' => false,
35
36     // User-level default settings
37     'user' => [
38         'ui-shortcuts'          => '{}',
39         'ui-shortcuts-enabled'  => false,
40         'dark-mode-enabled'     => env('APP_DEFAULT_DARK_MODE', false),
41         'bookshelves_view_type' => env('APP_VIEWS_BOOKSHELVES', 'grid'),
42         'bookshelf_view_type'   => env('APP_VIEWS_BOOKSHELF', 'grid'),
43         'books_view_type'       => env('APP_VIEWS_BOOKS', 'grid'),
44     ],
45
46 ];
Morty Proxy This is a proxified and sanitized view of the page, visit original site.