mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 04:13:42 +01:00
ae93a6ed07
- Removed all existing SCSS usage of primary color. - Cut down custom styles injection to just be css vars. - Reduced button styles so default button is primary. - Updated button styles to lighten/brighten on hover & active states even when a custom color is set. - Removed unused scss color vars. - Updated default BookStack blue to achieve better accessibility.
22 lines
636 B
PHP
22 lines
636 B
PHP
<?php
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
|
|
return [
|
|
|
|
'app-name' => 'BookStack',
|
|
'app-logo' => '',
|
|
'app-name-header' => true,
|
|
'app-editor' => 'wysiwyg',
|
|
'app-color' => '#1d75b6',
|
|
'app-color-light' => 'rgba(29,117,182,0.15)',
|
|
'app-custom-head' => false,
|
|
'registration-enabled' => false,
|
|
|
|
]; |