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:Jump to solution
try change the color in a service provider
```php
FilamentColor::register([
'primary' => Color::Blue,...
2 Replies
Solution
try change the color in a service provider
That did the job, thanks!