@php $themeColor = session('business.theme_color', 'primary'); $themeColorMap = [ 'primary' => ['700' => '#004EEB', '800' => '#0040C1', '900' => '#00359E'], 'indigo' => ['700' => '#4338CA', '800' => '#3730A3', '900' => '#312E81'], 'violet' => ['700' => '#6D28D9', '800' => '#5B21B6', '900' => '#4C1D95'], 'purple' => ['700' => '#5925DC', '800' => '#4A1FB8', '900' => '#3E1C96'], 'teal' => ['700' => '#0F766E', '800' => '#115E59', '900' => '#134E4A'], 'emerald' => ['700' => '#047857', '800' => '#065F46', '900' => '#064E3B'], 'green' => ['700' => '#067647', '800' => '#085D3A', '900' => '#074D31'], 'sky' => ['700' => '#026AA2', '800' => '#065986', '900' => '#0B4A6F'], 'pink' => ['700' => '#BE185D', '800' => '#9D174D', '900' => '#831843'], 'rose' => ['700' => '#BE123C', '800' => '#9F1239', '900' => '#881337'], 'red' => ['700' => '#B42318', '800' => '#912018', '900' => '#7A271A'], 'orange' => ['700' => '#B93815', '800' => '#932F19', '900' => '#772917'], 'yellow' => ['700' => '#B54708', '800' => '#93370D', '900' => '#7A2E0E'], 'slate' => ['700' => '#334155', '800' => '#1E293B', '900' => '#0F172A'], ]; $tc = $themeColorMap[$themeColor] ?? $themeColorMap['primary']; @endphp @if( in_array(session()->get('user.language', config('app.locale')), config('constants.langs_rtl')) ) @endif @yield('css') @if(isset($pos_layout) && $pos_layout) @endif @if(!empty($__system_settings['additional_css'])) {!! $__system_settings['additional_css'] !!} @endif