mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 19:24:03 +01:00
11 lines
275 B
PHP
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>
|