- @if(Setting::get('app-color'))
- <style>
- header{
- background-color: #{{ Setting::get('app-color') }};
- }
- .faded-small{
- background-color: {{ Setting::get('app-color-rgba') }};
- }
- .button-base, .button, input[type="button"], input[type="submit"] {
- background-color: #{{ Setting::get('app-color') }};
- }
- .button-base:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover {
- background-color: #{{ Setting::get('app-color') }};
- }
- p.primary:hover, p .primary:hover, span.primary:hover, .text-primary:hover {
- color: #{{ Setting::get('app-color') }};
- }
- </style>
+
+ @include('partials/custom-styles')
+
+ @if(setting('app-custom-head') && \Route::currentRouteName() !== 'settings')
+ <!-- Custom user content -->
+ {!! setting('app-custom-head') !!}
+ <!-- End custom user content -->