@php $titleColor = $theme->themeEditor->title_color ?? null; $navBarColor = $theme->themeEditor->nav_color ?? null; $navTextColor = $theme->themeEditor->nav_text_color ?? null; $headerImageDisplay = $theme->themeEditor->header_image_display ?? null; $backgroundColor = $theme->themeEditor->background_color ?? null; $backgroundImage = $theme->backgroundImageUrl ?? null; $backgroundSize = $theme->themeEditor->background_size ?? null; $mainMarginTop = $headerImageDisplay == 'none' ? 50 : 0; $mainColor = $theme->themeEditor->main_color ?? null; $mainTextColor = $theme->themeEditor->main_text_color ?? null; $cardColor = $theme->themeEditor->card_color ?? null; $cardTextColor = $theme->themeEditor->card_text_color ?? null; $cardHeaderColor = $theme->themeEditor->card_header_color ?? null; $cardHeaderTextColor = $theme->themeEditor->card_header_text_color ?? null; $linkColor = $theme->themeEditor->link_color ?? null; $primaryButtonColor = $theme->themeEditor->primary_button_color ?? null; $secondaryButtonColor = $theme->themeEditor->secondary_button_color ?? null; @endphp