{{-- resources/views/layouts/navbar.blade.php --}} @php $_navColor = config('app.navbar_color', '#212529'); // 計算亮度決定文字色(公式:YIQ) $_hex = ltrim($_navColor, '#'); if (strlen($_hex) === 3) $_hex = $_hex[0].$_hex[0].$_hex[1].$_hex[1].$_hex[2].$_hex[2]; $_r = hexdec(substr($_hex,0,2)); $_g = hexdec(substr($_hex,2,2)); $_b = hexdec(substr($_hex,4,2)); $_yiq = (($_r * 299) + ($_g * 587) + ($_b * 114)) / 1000; $_navTheme = $_yiq >= 128 ? 'navbar-light' : 'navbar-dark'; @endphp {{-- 版本資訊 Modal --}}