Changing colours on standalone Form Builder without Panels

How can i change the default colours when using filament forms without panels.

I tried adding this to the boot method of service provider, but nothing changes:

 public function boot(): void
    {
        FilamentColor::register([
            'danger' => Color::Red,
            'gray' => Color::Zinc,
            'info' => Color::Blue,
            'primary' => Color::Fuchsia,
            'success' => Color::Green,
            'warning' => Color::Amber,
        ]);
    }
Was this page helpful?