@foreach ($pwaSettings->icons as $item)
@endforeach
{{-- --}}
@filamentStyles
@vite('resources/css/app.css')
{!! $scriptSettings->custom_script_head !!}
@if($authSettings->recaptcha_enabled)
{!! GoogleReCaptchaV3::init() !!}
@endif
@filamentScripts
@vite('resources/js/app.js')
@stack('scripts')
{!! $scriptSettings->custom_script_body !!}
@php
$primaryColor = $appearanceSettings?->primary_color ?? '#FDae4B'; // Default to a fallback color if not set
$primaryRgb = hexToRgb($primaryColor);
$darkerPrimaryRgb1 = adjustBrightness($primaryRgb, 60);
$darkerPrimaryRgb10 = adjustBrightness($primaryRgb, -10);
$darkerPrimaryRgb20 = adjustBrightness($primaryRgb, -20);
$darkerPrimaryRgb25 = adjustBrightness($primaryRgb, -25);
@endphp