@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