Using components outside filament

Hi,

in V2 it was possible to use filament components outside filament, which could be done by also using the filament.base layout.

But in V3, this base layout now needs $livewire to be passed through. How can I do this outside filament? I looked inside filament itself and didn't quite understand where $livewire even comes from, as it is used in the base layout, which is the first thing that gets loaded (I guess?)

Thank you!
Solution
Then i'm just changing the colors in a service provider.
if (! Filament::isServing()) {
    FilamentColor::register([
        'primary' => '#00529b',
        'secondary' => '#1d2755',
        'tertiary' => '#aed2ec',
        'accent' => '#ee1b2e',
    ]);
}
Was this page helpful?