How to change theme for "Filament Form Builder"

I am only using a Filament Form Builder for a project by default looks like it shows yellow as a primary color. Is there a easy way to customize the theme for this like change color.
3 Replies
LeandroFerreira
LeandroFerreira11mo ago
//app/Providers/AppServiceProvider.php

use Filament\Support\Colors\Color;
use Filament\Support\Facades\FilamentColor;

public function boot(): void
{
FilamentColor::register([
'primary' => Color::Blue,
]);
}
//app/Providers/AppServiceProvider.php

use Filament\Support\Colors\Color;
use Filament\Support\Facades\FilamentColor;

public function boot(): void
{
FilamentColor::register([
'primary' => Color::Blue,
]);
}
Ankit Thapa
Ankit Thapa10mo ago
Thanks @leandro_ferreira this works perfectly.