Using filament theme on custom page

I am trying to use the Filament theme on a custom page. The custom page is using a Livewire component. I want to sync the color for the custom page and the panel. And yes, I have set up the custom theme with the "make:filament-theme" command.

<x-filament-panels::page>
    <livewire:component/>
</x-filament-panels::page>


livewire/components.blade.php


<div>
 <h1 class="primay">{{ $hello }}</h1>
</div>
Was this page helpful?