Cachet/app/views/partials/stylesheet.blade.php
2014-12-29 19:52:44 +00:00

11 lines
275 B
PHP

<style type='text/css'>
body.status-page {
@if($styleBackgroundColor = Setting::get('style_background_color'))
background-color: {{ $styleBackgroundColor }};
@endif
@if($styleTextColor = Setting::get('style_text_color'))
color: {{ $styleTextColor }};
@endif
}
</style>