How to change the next button color in custom Livewire Filament Wizard form (outside admin panel)

How do I change the color of the next button in a custom Livewire Form Wizard Element outside of admin panel?
Do I have to make a custom css file that overrides the default (Amber) color?
Or can I do that with a method on the form?
Solution
try change the color in a service provider

FilamentColor::register([
    'primary' => Color::Blue,
]);
Was this page helpful?