@extends('layouts.app') @section('header-title', __('Theme Colors')) @section('content')

{{ __('Theme Colors Settings') }}

@csrf
{{ __('Current Color') }}

{{ $primary }}

{{ $secondary }}

@if (app()->environment('local')) @hasPermission('admin.themeColor.update') @endhasPermission @endif
{{ __('Available Colors palette') }}
@foreach ($themeColors as $themeColor)
@php $shades = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950]; @endphp @foreach ($shades as $shade)
{{ $shade }} {{ $themeColor['variant_' . $shade] }}
@endforeach
@endforeach
@csrf
@endsection @push('css') @endpush @push('scripts') @endpush