Cachet/resources/views/partials/stylesheet.blade.php
2015-05-19 17:06:39 +01:00

13 lines
241 B
PHP

@if($themeSetup)
<style type="text/css">
body.status-page {
@if($themeBackgroundColor)
background-color: {{ $themeBackgroundColor }};
@endif
@if($themeTextColor)
color: {{ $themeTextColor }};
@endif
}
</style>
@endif